aboutsummaryrefslogtreecommitdiff
path: root/src/SetupGroup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/SetupGroup.c')
-rw-r--r--src/SetupGroup.c19
1 files changed, 6 insertions, 13 deletions
diff --git a/src/SetupGroup.c b/src/SetupGroup.c
index 79c4da0..076fe7c 100644
--- a/src/SetupGroup.c
+++ b/src/SetupGroup.c
@@ -33,8 +33,7 @@ static int PUGH_SetupGAGroup (pGH *newGH,
int n_variables,
int vectorlength,
int staggercode,
- int n_timelevels,
- int vectorgroup);
+ int n_timelevels);
/*@@
@@ -95,11 +94,6 @@ static int PUGH_SetupGAGroup (pGH *newGH,
@vtype int
@vio in
@endvar
- @var vectorgroup
- @vdesc is this a vector group ?
- @vtype int
- @vio in
- @endvar
@returntype int
@returndesc
@@ -116,8 +110,7 @@ static int PUGH_SetupGAGroup (pGH *newGH,
int n_variables,
int vectorlength,
int staggercode,
- int n_timelevels,
- int vectorgroup)
+ int n_timelevels)
{
int i;
int variable;
@@ -178,12 +171,10 @@ static int PUGH_SetupGAGroup (pGH *newGH,
groupcomm = NULL;
if(newGH->commmodel == PUGH_ALLOCATEDBUFFERS)
{
- groupcomm = PUGH_SetupGArrayGroupComm (newGH,
- dim,
+ groupcomm = PUGH_SetupGArrayGroupComm (dim,
newGH->nvariables,
n_variables,
0,
- vtype,
extras);
}
@@ -321,9 +312,11 @@ int PUGH_SetupGroup (pGH *newGH,
{
int retval;
+
+ (void) (vectorgroup + 0);
retval = PUGH_SetupGAGroup (newGH, nsize, nghostsize, gtype, vtype, dim,
n_variables, vectorlength, staggercode,
- n_timelevels, vectorgroup);
+ n_timelevels);
return (retval);
}