aboutsummaryrefslogtreecommitdiff
path: root/src/Output.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Output.c')
-rw-r--r--src/Output.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Output.c b/src/Output.c
index 1e286a7..f988c02 100644
--- a/src/Output.c
+++ b/src/Output.c
@@ -80,7 +80,7 @@ int IOBasic_OutputGH (cGH *GH)
#endif
/* Make the IO call */
- if (CCTK_GroupTypeFromVarI (index) == GROUP_SCALAR)
+ if (CCTK_GroupTypeFromVarI (index) == CCTK_SCALAR)
{
IOBasic_Write (GH, index, name);
}
@@ -139,7 +139,7 @@ int IOBasic_OutputVarAs (cGH *GH, const char *fullname, const char *alias)
printf(" Index = %d\n",index);
#endif
- if (CCTK_GroupTypeFromVarI (index) == GROUP_SCALAR)
+ if (CCTK_GroupTypeFromVarI (index) == CCTK_SCALAR)
{
IOBasic_Write (GH, index, alias);
}
@@ -266,7 +266,7 @@ int IOBasic_TriggerOutput (cGH *GH, int index)
#endif
/* Do the Scalar output */
- if (CCTK_GroupTypeFromVarI (index) == GROUP_SCALAR)
+ if (CCTK_GroupTypeFromVarI (index) == CCTK_SCALAR)
{
IOBasic_Write (GH, index, name);
}