aboutsummaryrefslogtreecommitdiff
path: root/src/Output.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Output.c')
-rw-r--r--src/Output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Output.c b/src/Output.c
index 1a68fac..15450c1 100644
--- a/src/Output.c
+++ b/src/Output.c
@@ -193,7 +193,7 @@ int IOStreamedHDF5_TimeFor (const cGH *GH, int vindex)
/* check if this variable should be output */
myGH = (ioStreamedHDF5GH *) CCTK_GHExtension (GH, "IOStreamedHDF5");
- retval = myGH->out_every > 0 && myGH->slablist[vindex] &&
+ retval = myGH->out_every > 0 && myGH->requests[vindex] &&
GH->cctk_iteration % myGH->out_every == 0;
if (retval)
{
@@ -335,7 +335,7 @@ static void CheckSteerableParameters (const cGH *GH)
times_set = CCTK_ParameterQueryTimesSet ("out_vars", CCTK_THORNSTRING);
if (times_set != out_vars_lastset)
{
- IOHDF5Util_ParseVarsForOutput (GH, out_vars, myGH->slablist);
+ IOUtil_ParseVarsForOutput (GH, out_vars, myGH->requests);
/* Save the last setting of 'out_vars' parameter */
out_vars_lastset = times_set;