aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Startup.c b/src/Startup.c
index a04db52..1d66cbf 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -200,13 +200,14 @@ static int StreamedHDF5_InitGH (cGH *GH)
/* How often to output */
myGH->out_every = out_every > 0 ? out_every : -1;
if (outHDF5_every > 0)
+ {
myGH->out_every = outHDF5_every;
- ParseVarsForOutputH5stream (myGH, out_vars);
+ }
for (i = 0; i < CCTK_NumVars (); i++)
+ {
myGH->out_last [i] = -1;
+ }
return (0);
}
-
-