summaryrefslogtreecommitdiffstats
path: root/test/tfile.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1998-02-06 02:56:45 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1998-02-06 02:56:45 (GMT)
commit858b8fbfaedd5800f2c716f381618a978b89d1a0 (patch)
treecbe63a03ccf02ea03e63c206430234d8bbb621fd /test/tfile.c
parent0e55445d79ef1abea2e62cbe140370bcd9136e6a (diff)
downloadhdf5-858b8fbfaedd5800f2c716f381618a978b89d1a0.zip
hdf5-858b8fbfaedd5800f2c716f381618a978b89d1a0.tar.gz
hdf5-858b8fbfaedd5800f2c716f381618a978b89d1a0.tar.bz2
[svn-r223] Somehow the default create template header is causing heap routines
failures. Row back the offset and length sizes to 4 (instead of sizeof(size_t)) for now to pass all tests. Will fix it later. (Also changed the default create template in H5F.c).
Diffstat (limited to 'test/tfile.c')
-rw-r--r--test/tfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tfile.c b/test/tfile.c
index 9f0af22..ffbe172 100644
--- a/test/tfile.c
+++ b/test/tfile.c
@@ -32,8 +32,8 @@ static char RcsId[] = "$Revision$";
#include <H5Mprivate.h>
#define F1_USERBLOCK_SIZE 0
-#define F1_OFFSET_SIZE sizeof(size_t)
-#define F1_LENGTH_SIZE sizeof(size_t)
+#define F1_OFFSET_SIZE 4
+#define F1_LENGTH_SIZE 4
#define F1_SYM_LEAF_K 4
#define F1_SYM_INTERN_K 16
#define FILE1 "tfile1.h5"