summaryrefslogtreecommitdiff
path: root/src/IO/FortranBindingsIO.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/IO/FortranBindingsIO.c')
-rw-r--r--src/IO/FortranBindingsIO.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/IO/FortranBindingsIO.c b/src/IO/FortranBindingsIO.c
index e3e72426..bf644ea9 100644
--- a/src/IO/FortranBindingsIO.c
+++ b/src/IO/FortranBindingsIO.c
@@ -27,7 +27,7 @@ CCTK_FILEVERSION(IO_FortranBindingsIO_c);
********************************************************************/
void CCTK_FCALL CCTK_FNAME (CCTK_OutputGH)
- (int *istat, const cGH *GH);
+ (int *istat, const cGH **GH);
void CCTK_FCALL CCTK_FNAME (CCTKi_RegisterIOMethod)
(int *handle, TWO_FORTSTRING_ARG);
@@ -63,9 +63,9 @@ void CCTK_FCALL CCTK_FNAME (CCTKi_RegisterIOMethod)
@endreturndesc
@@*/
void CCTK_FCALL CCTK_FNAME (CCTK_OutputGH)
- (int *istat, const cGH *GH)
+ (int *istat, const cGH **GH)
{
- *istat = CCTK_OutputGH (GH);
+ *istat = CCTK_OutputGH (*GH);
}
/*@@