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