summaryrefslogtreecommitdiff
path: root/src/main/GroupsOnGH.c
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-27 23:39:01 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-27 23:39:01 +0000
commit5d62a93a47efbad36997035a234da4f8222aabc8 (patch)
treef4cccfadd13b65a05e895eee0e359f7b3ca55f4a /src/main/GroupsOnGH.c
parentccf91185d4d9a4e785aad16a3cd42d666bd4d73a (diff)
Turned the GH argument type in calls to CCTK_EnableGroup[{Storage}{Comm}]()
from 'void *' into 'cGH *'. Note that this is likely to change into a 'const cGH *' argument before the next release. This closes PR Cactus-820. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2471 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/GroupsOnGH.c')
-rw-r--r--src/main/GroupsOnGH.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/GroupsOnGH.c b/src/main/GroupsOnGH.c
index bc6dcba6..e5508e8a 100644
--- a/src/main/GroupsOnGH.c
+++ b/src/main/GroupsOnGH.c
@@ -357,7 +357,7 @@ void *CCTK_VarDataPtrB(const cGH *GH, int timelevel, int vari, char *varn)
@endhistory
@@*/
-int CCTK_EnableGroupCommI(void *GH, int group)
+int CCTK_EnableGroupCommI(cGH *GH, int group)
{
int retcode;
char *group_name;
@@ -391,7 +391,7 @@ int CCTK_EnableGroupCommI(void *GH, int group)
@endhistory
@@*/
-int CCTK_EnableGroupStorageI(void *GH, int group)
+int CCTK_EnableGroupStorageI(cGH *GH, int group)
{
int retcode;
char *group_name;
@@ -428,7 +428,7 @@ int CCTK_EnableGroupStorageI(void *GH, int group)
@endhistory
@@*/
-int CCTK_DisableGroupCommI(void *GH, int group)
+int CCTK_DisableGroupCommI(cGH *GH, int group)
{
int retcode;
char *group_name;
@@ -465,7 +465,7 @@ int CCTK_DisableGroupCommI(void *GH, int group)
@endhistory
@@*/
-int CCTK_DisableGroupStorageI(void *GH, int group)
+int CCTK_DisableGroupStorageI(cGH *GH, int group)
{
int retcode;
char *group_name;