summaryrefslogtreecommitdiff
path: root/src/comm
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-26 11:59:49 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-26 11:59:49 +0000
commitf55d83fdd1a810971008e384676d7413fa873955 (patch)
tree90d3a0076ee3dc447bdf41c37ddeaa6558b0bbbf /src/comm
parentc31c2cd3f5a162d92c55d864e38d698da3e41e56 (diff)
CCTK function name changes
git-svn-id: http://svn.cactuscode.org/flesh/trunk@787 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/comm')
-rw-r--r--src/comm/CactusComm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/comm/CactusComm.c b/src/comm/CactusComm.c
index d498bdd7..0febdad9 100644
--- a/src/comm/CactusComm.c
+++ b/src/comm/CactusComm.c
@@ -7,14 +7,14 @@
#include "Comm.h"
#include "GHExtensions.h"
-int *CCTK_ArrayGroupSizeI(cGH *GH, int index, int dir)
+int *CCTK_ArrayGroupSizeI(cGH *GH, int dir, int index)
{
- return CCTK_ArrayGroupSizeB(GH,index,NULL,dir);
+ return CCTK_ArrayGroupSizeB(GH,dir,index,NULL);
}
-int *CCTK_ArrayGroupSize(cGH *GH, const char *groupname, int dir)
+int *CCTK_ArrayGroupSize(cGH *GH, int dir, const char *groupname)
{
- return CCTK_ArrayGroupSizeB(GH,-1,groupname,dir);
+ return CCTK_ArrayGroupSizeB(GH,dir,-1,groupname);
}
int CCTK_QueryGroupStorageI(cGH *GH, int index)