aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2000-06-20 12:53:09 +0000
committertradke <tradke@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2000-06-20 12:53:09 +0000
commit9d8588b582ce6696a3bd7ebbee293301426788f3 (patch)
tree1538c5292e7286152fb1d6ad003f043d82c7ec04
parentc0d7c72fb498b9a8c6cf062a31dbbbae75fec444 (diff)
My first bugfix for thorn StreamedHDF5:
StreamedHDF5::outHDF5_every didn't override IO::out_every. git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOStreamedHDF5/trunk@5 0888f3d4-9f52-45d2-93bc-d00801ff5e46
-rw-r--r--src/Output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Output.c b/src/Output.c
index cfb0a97..b20a384 100644
--- a/src/Output.c
+++ b/src/Output.c
@@ -249,8 +249,8 @@ static void CheckSteerableParameters (StreamedHDF5GH *myGH)
/* How often to output */
myGH->out_every = out_every > 0 ? out_every : -1;
- if (out_every > 0)
- myGH->out_every = out_every;
+ if (outHDF5_every > 0)
+ myGH->out_every = outHDF5_every;
/* Check the 'out_vars' parameter */
paramdata = CCTK_ParameterData ("out_vars", CCTK_THORNSTRING);