aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@4825ed28-b72c-4eae-9704-e50c059e567d>2004-04-30 20:50:17 +0000
committertradke <tradke@4825ed28-b72c-4eae-9704-e50c059e567d>2004-04-30 20:50:17 +0000
commit899b4db38262a980b81b20dd3f2baf69984dc097 (patch)
treebfdd3c8b9f9dd7c0295f4576f3641b84e75475a2
parentb029d3a3388ecb341c47153b935b5b9ca15dfa82 (diff)
Bug fix from Yosef Zlochower: initialize "last_checkpoint_iteration" in the GH structure.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOHDF5/trunk@189 4825ed28-b72c-4eae-9704-e50c059e567d
-rw-r--r--src/Startup.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 33503f1..9bafc73 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -135,6 +135,7 @@ static void *SetupGH (tFleshConfig *config, int conv_level, cGH *GH)
myGH->cp_filename_index = 0;
myGH->out_vars = strdup ("");
myGH->out_every_default = out_every - 1;
+ myGH->last_checkpoint_iteration = -1;
/* get the name of IOHDF5's output directory */
my_out_dir = out_dir;