aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorschnetter <schnetter@f69c4107-0314-4c4f-9ad4-17e986b73f4a>2006-08-03 23:05:00 +0000
committerschnetter <schnetter@f69c4107-0314-4c4f-9ad4-17e986b73f4a>2006-08-03 23:05:00 +0000
commit17710d6ad65e9b0a756d9bb72d0fea74c05c3d8d (patch)
treed3c943e40674b73a20f3741990c02411671807c0 /src
parent52a24adeead81157f5d205c6a94a3d4a8731c453 (diff)
Correct Fortran wrapper
git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/SummationByParts/trunk@76 f69c4107-0314-4c4f-9ad4-17e986b73f4a
Diffstat (limited to 'src')
-rw-r--r--src/stencil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stencil.c b/src/stencil.c
index 007a7c6..e57f9ff 100644
--- a/src/stencil.c
+++ b/src/stencil.c
@@ -60,7 +60,7 @@ void SBP_determine_onesided_stencil (const cGH * cctkGH, int * onesided)
}
}
-CCTK_FCALL void CCTK_FNAME (SBP_determine_onesided_stencil) (CCTK_POINTER_TO_CONST cctkGH, int * onesided)
+CCTK_FCALL void CCTK_FNAME (SBP_determine_onesided_stencil) (CCTK_POINTER_TO_CONST * cctkGH, int * onesided)
{
- SBP_determine_onesided_stencil (cctkGH, onesided);
+ SBP_determine_onesided_stencil (* cctkGH, onesided);
}