aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2000-09-22 07:26:09 +0000
committerallen <allen@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2000-09-22 07:26:09 +0000
commit90fd61510aeceb858714aa4a43760a7e727bd2ad (patch)
treede347852da111853f60c81b4412c28d54653fd54
parentaff631d72074a67a01bbc34e1e54904b8b94e421 (diff)
Macro name changes
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@71 b589c3ab-70e8-4b4d-a09f-cba2dd200880
-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);
}