aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Output.c b/src/Output.c
index 4a40677..e0aed75 100644
--- a/src/Output.c
+++ b/src/Output.c
@@ -140,7 +140,7 @@ int IOPanda_OutputVarAs (const cGH *GH, const char *fullname, const char *alias)
if (oneshot)
{
IOUtil_ParseVarsForOutput (GH, CCTK_THORNSTRING, "IOPanda::out_vars",
- 0, fullname, 1, myGH->requests);
+ 0, fullname, 1, -1.0, myGH->requests);
}
/* do the output */
@@ -318,7 +318,7 @@ void IOPanda_CheckSteerableParameters (const cGH *GH)
{
IOUtil_ParseVarsForOutput (GH, CCTK_THORNSTRING, "IOPanda::out_vars",
myGH->stop_on_parse_errors, out_vars,
- myGH->out_every_default, myGH->requests);
+ myGH->out_every_default, -1.0, myGH->requests);
/*** FIXME: IEEEIO doesn't provide a COMPLEX datatype
so we should map CCTK_COMPLEX to two REALs here.