aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
authorlanfer <lanfer@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2000-09-12 11:15:36 +0000
committerlanfer <lanfer@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2000-09-12 11:15:36 +0000
commitecf5ec34c3faadb1c41f3aebcececd8248c10665 (patch)
treeadd84991a70e6f54c86421d73bfb33b04840ee04 /src/Startup.c
parent45da5e83d86bcb00174e64b5e26001815b052c9d (diff)
renaming routines to avoid name clashes with other streaming routines and the CST preprocessing
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOStreamedHDF5/trunk@34 0888f3d4-9f52-45d2-93bc-d00801ff5e46
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 2faf55a..a04db52 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -192,7 +192,8 @@ static int StreamedHDF5_InitGH (cGH *GH)
handle = CCTK_GHExtensionHandle ("StreamedHDF5");
myGH = handle >= 0 ? (StreamedHDF5GH *) GH->extensions [handle] : NULL;
if (handle < 0 || myGH == NULL)
- {
+ {
+ CCTK_WARN (1, "Couldn't access GH extension handle\n");
return (-1);
}
@@ -200,7 +201,7 @@ static int StreamedHDF5_InitGH (cGH *GH)
myGH->out_every = out_every > 0 ? out_every : -1;
if (outHDF5_every > 0)
myGH->out_every = outHDF5_every;
- ParseVarsForOutput (myGH, out_vars);
+ ParseVarsForOutputH5stream (myGH, out_vars);
for (i = 0; i < CCTK_NumVars (); i++)
myGH->out_last [i] = -1;