aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2001-05-10 22:14:56 +0000
committertradke <tradke@0888f3d4-9f52-45d2-93bc-d00801ff5e46>2001-05-10 22:14:56 +0000
commit25578a20df86e6fc4820ed6bd274800401cb11fb (patch)
tree5d1eeac04d886366c08b5794a215716af46ad162
parent5b8448bd666a970c43458ac35a597957577deba3 (diff)
Get rid of timelevel variable which is always 0 now.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOStreamedHDF5/trunk@71 0888f3d4-9f52-45d2-93bc-d00801ff5e46
-rw-r--r--src/Write.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Write.c b/src/Write.c
index 4d54636..2fdc8ec 100644
--- a/src/Write.c
+++ b/src/Write.c
@@ -55,7 +55,6 @@ void IOStreamedHDF5_Write (cGH *GH,
const char *alias)
{
DECLARE_CCTK_PARAMETERS
- int timelevel;
int old_ioproc;
int old_nioprocs;
int old_ioproc_every;
@@ -124,11 +123,8 @@ void IOStreamedHDF5_Write (cGH *GH,
IOHDF5_ERROR (H5Pclose (plist));
}
- /* get the current timelevel */
- timelevel = 0;
-
/* output the data */
- IOHDF5Util_DumpVar (GH, vindex, timelevel, myGH->geo_output[vindex], file, 0);
+ IOHDF5Util_DumpVar (GH, vindex, 0, myGH->geo_output[vindex], file, 0);
/* close the file */
if (file >= 0)