diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-02-06 02:56:45 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-02-06 02:56:45 (GMT) |
commit | 858b8fbfaedd5800f2c716f381618a978b89d1a0 (patch) | |
tree | cbe63a03ccf02ea03e63c206430234d8bbb621fd /test | |
parent | 0e55445d79ef1abea2e62cbe140370bcd9136e6a (diff) | |
download | hdf5-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')
-rw-r--r-- | test/tfile.c | 4 |
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" |