aboutsummaryrefslogtreecommitdiff
path: root/src/GetSymmetry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/GetSymmetry.c')
-rw-r--r--src/GetSymmetry.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/GetSymmetry.c b/src/GetSymmetry.c
index 7c6767c..f21a3ee 100644
--- a/src/GetSymmetry.c
+++ b/src/GetSymmetry.c
@@ -33,9 +33,9 @@ CCTK_FILEVERSION(CactusBase_CartGrid3D_GetSymmetry_c)
void DecodeSymParameters3D(int sym[6]);
void CCTK_FCALL CCTK_FNAME(GetCartSymVI)
- (int *ierr, const cGH *GH, int *sym, const int *vi);
+ (int *ierr, const cGH **GH, int *sym, const int *vi);
void CCTK_FCALL CCTK_FNAME(GetCartSymVN)
- (int *ierr, const cGH *GH, int *sym, ONE_FORTSTRING_ARG);
+ (int *ierr, const cGH **GH, int *sym, ONE_FORTSTRING_ARG);
/********************************************************************
********************* External Routines **********************
@@ -81,9 +81,9 @@ int GetCartSymVI(const cGH *GH, int *sym, int vi)
}
void CCTK_FCALL CCTK_FNAME(GetCartSymVI)
- (int *ierr, const cGH *GH, int *sym, const int *vi)
+ (int *ierr, const cGH **GH, int *sym, const int *vi)
{
- *ierr = GetCartSymVI(GH, sym, *vi);
+ *ierr = GetCartSymVI(*GH, sym, *vi);
}
@@ -113,10 +113,10 @@ int GetCartSymVN(const cGH *GH, int *sym, const char *vn)
}
void CCTK_FCALL CCTK_FNAME(GetCartSymVN)
- (int *ierr, const cGH *GH, int *sym, ONE_FORTSTRING_ARG)
+ (int *ierr, const cGH **GH, int *sym, ONE_FORTSTRING_ARG)
{
ONE_FORTSTRING_CREATE(vn)
- *ierr = GetCartSymVN(GH, sym, vn);
+ *ierr = GetCartSymVN(*GH, sym, vn);
free(vn);
}