aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
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;