aboutsummaryrefslogtreecommitdiff
path: root/src/SetupGroup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/SetupGroup.c')
-rw-r--r--src/SetupGroup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SetupGroup.c b/src/SetupGroup.c
index d986f97..c609d5a 100644
--- a/src/SetupGroup.c
+++ b/src/SetupGroup.c
@@ -98,7 +98,7 @@ int pugh_SetupScalarGroup(pGH *newGH, int vtype, int n_variables, int n_timeleve
case CCTK_VARIABLE_CHAR : var_size = sizeof(char); break;
case CCTK_VARIABLE_INTEGER : var_size = sizeof(int) ; break;
case CCTK_VARIABLE_REAL : var_size = sizeof(CCTK_REAL); break;
- case CCTK_VARIABLE_COMPLEX : var_size = sizeof(Complex); break;
+ case CCTK_VARIABLE_COMPLEX : var_size = sizeof(CCTK_COMPLEX); break;
default : fprintf(stderr,
"Unknown variable type in pugh_SetupScalarGroup\n");
var_size = 1;
@@ -176,7 +176,7 @@ int pugh_SetupGFGroup(pGH *newGH, int vtype, int dim, int n_variables, int n_tim
case CCTK_VARIABLE_CHAR : var_size = sizeof(char); break;
case CCTK_VARIABLE_INTEGER : var_size = sizeof(int) ; break;
case CCTK_VARIABLE_REAL : var_size = sizeof(CCTK_REAL); break;
- case CCTK_VARIABLE_COMPLEX : var_size = sizeof(Complex); break;
+ case CCTK_VARIABLE_COMPLEX : var_size = sizeof(CCTK_COMPLEX); break;
default : fprintf(stderr,
"Unknown variable type in pugh_SetupScalarGroup\n");
var_size = 1;