aboutsummaryrefslogtreecommitdiff
path: root/src/stencil.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stencil.c')
-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);
}