aboutsummaryrefslogtreecommitdiff
path: root/src/SetSymmetry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/SetSymmetry.c')
-rw-r--r--src/SetSymmetry.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/SetSymmetry.c b/src/SetSymmetry.c
index c10c55b..263af8d 100644
--- a/src/SetSymmetry.c
+++ b/src/SetSymmetry.c
@@ -26,13 +26,13 @@ CCTK_FILEVERSION(CactusBase_CartGrid3D_SetSymmetry_c)
********************************************************************/
void DecodeSymParameters3D(int sym[6]);
void CCTK_FCALL CCTK_FNAME(SetCartSymVI)
- (int *ierr, const cGH *GH, const int *sym, const int *vi);
+ (int *ierr, const cGH **GH, const int *sym, const int *vi);
void CCTK_FCALL CCTK_FNAME(SetCartSymVN)
- (int *ierr, const cGH *GH, const int *sym, ONE_FORTSTRING_ARG);
+ (int *ierr, const cGH **GH, const int *sym, ONE_FORTSTRING_ARG);
void CCTK_FCALL CCTK_FNAME(SetCartSymGI)
- (int *ierr, const cGH *GH, const int *sym, const int *gi);
+ (int *ierr, const cGH **GH, const int *sym, const int *gi);
void CCTK_FCALL CCTK_FNAME(SetCartSymGN)
- (int *ierr, const cGH *GH, const int *sym, ONE_FORTSTRING_ARG);
+ (int *ierr, const cGH **GH, const int *sym, ONE_FORTSTRING_ARG);
/*@@
@@ -107,9 +107,9 @@ int SetCartSymVI (const cGH *GH, const int *sym, int vi)
}
void CCTK_FCALL CCTK_FNAME(SetCartSymVI)
- (int *ierr, const cGH *GH, const int *sym, const int *vi)
+ (int *ierr, const cGH **GH, const int *sym, const int *vi)
{
- *ierr = SetCartSymVI (GH, sym, *vi);
+ *ierr = SetCartSymVI (*GH, sym, *vi);
}
@@ -143,10 +143,10 @@ int SetCartSymVN(const cGH *GH, const int *sym, const char *vn)
}
void CCTK_FCALL CCTK_FNAME(SetCartSymVN)
- (int *ierr, const cGH *GH, const int *sym, ONE_FORTSTRING_ARG)
+ (int *ierr, const cGH **GH, const int *sym, ONE_FORTSTRING_ARG)
{
ONE_FORTSTRING_CREATE(vn)
- *ierr = SetCartSymVN(GH, sym, vn);
+ *ierr = SetCartSymVN(*GH, sym, vn);
free(vn);
}
@@ -232,9 +232,9 @@ int SetCartSymGI(const cGH *GH, const int *sym, int gi)
}
void CCTK_FCALL CCTK_FNAME(SetCartSymGI)
- (int *ierr, const cGH *GH, const int *sym, const int *gi)
+ (int *ierr, const cGH **GH, const int *sym, const int *gi)
{
- *ierr = SetCartSymGI(GH, sym, *gi);
+ *ierr = SetCartSymGI(*GH, sym, *gi);
}
@@ -268,9 +268,9 @@ int SetCartSymGN(const cGH *GH, const int *sym, const char *gn)
}
void CCTK_FCALL CCTK_FNAME(SetCartSymGN)
- (int *ierr, const cGH *GH, const int *sym, ONE_FORTSTRING_ARG)
+ (int *ierr, const cGH **GH, const int *sym, ONE_FORTSTRING_ARG)
{
ONE_FORTSTRING_CREATE(gn)
- *ierr = SetCartSymGN(GH, sym, gn);
+ *ierr = SetCartSymGN(*GH, sym, gn);
free(gn);
}