aboutsummaryrefslogtreecommitdiff
path: root/src/Output1D.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Output1D.c')
-rw-r--r--src/Output1D.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Output1D.c b/src/Output1D.c
index 47f9b4a..5b1a297 100644
--- a/src/Output1D.c
+++ b/src/Output1D.c
@@ -58,7 +58,6 @@ int IOASCII_Output1DGH (const cGH *GH)
myGH = (asciiioGH *) CCTK_GHExtension (GH, "IOASCII");
- CheckSteerableParameters (myGH);
/* loop over all variables */
for (vindex = retval = 0; vindex < CCTK_NumVars (); vindex++)
@@ -249,7 +248,7 @@ static void CheckSteerableParameters (asciiioGH *myGH)
/* how often to output */
i = myGH->out1D_every_default;
- myGH->out1D_every_default = out1D_every > 0 ? out1D_every : out_every;
+ myGH->out1D_every_default = out1D_every >= 0 ? out1D_every : out_every;
/* report if frequency changed */
if (myGH->out1D_every_default != i && ! CCTK_Equals (newverbose, "none"))