aboutsummaryrefslogtreecommitdiff
path: root/src/SetupGroup.c
diff options
context:
space:
mode:
authorgoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-11-30 23:43:58 +0000
committergoodale <goodale@b61c5cb5-eaca-4651-9a7a-d64986f99364>1999-11-30 23:43:58 +0000
commit3e4301c03fc5a2fafe71ca1dc2ac43fdb43d9f76 (patch)
tree70f94c6c96d5cacab6d036891521a6e0bb534a4c /src/SetupGroup.c
parentf0570f4d024b5bc94f86f64d3f7543b5afca506d (diff)
Added lots of missing function prototypes.
Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@136 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/SetupGroup.c')
-rw-r--r--src/SetupGroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SetupGroup.c b/src/SetupGroup.c
index f313274..f44ebd5 100644
--- a/src/SetupGroup.c
+++ b/src/SetupGroup.c
@@ -92,7 +92,7 @@ int pugh_SetupScalarGroup(pGH *newGH, int vtype, int n_variables, int n_timeleve
switch(vtype)
{
case CCTK_VARIABLE_CHAR : var_size = sizeof(CCTK_CHAR); break;
- case CCTK_VARIABLE_INT : var_size = sizeof(CCTK_INT) ; break;
+ case CCTK_VARIABLE_INT : var_size = sizeof(CCTK_INT) ; break;
case CCTK_VARIABLE_REAL : var_size = sizeof(CCTK_REAL); break;
case CCTK_VARIABLE_COMPLEX : var_size = sizeof(CCTK_COMPLEX); break;
default : CCTK_WARN(0,"Unknown variable type in pugh_SetupScalarGroup");