summaryrefslogtreecommitdiffstats
path: root/test/ohdr.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-07-17 21:17:12 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-07-17 21:17:12 (GMT)
commit2ed54543c8a45e3315d53ba5c1c44e33a98b5c73 (patch)
tree4379e27ec27757a33db180cf994e2bf2df85a36e /test/ohdr.c
parent814ad1cb42a824fc5a0b0b4d675aa7b4c6caec4c (diff)
downloadhdf5-2ed54543c8a45e3315d53ba5c1c44e33a98b5c73.zip
hdf5-2ed54543c8a45e3315d53ba5c1c44e33a98b5c73.tar.gz
hdf5-2ed54543c8a45e3315d53ba5c1c44e33a98b5c73.tar.bz2
[svn-r13987] Description:
Fix ohdr test for changes to internal 5O_get_info() routine. Tested on: Mac OS X/32 10.4.10 (amazon) FreeBSD/32 6.2 (duty)
Diffstat (limited to 'test/ohdr.c')
-rw-r--r--test/ohdr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ohdr.c b/test/ohdr.c
index 35ea335..02691c0 100644
--- a/test/ohdr.c
+++ b/test/ohdr.c
@@ -136,7 +136,7 @@ main(void)
TEST_ERROR
/* Make certain that chunk #0 in the object header can be encoded with a 1-byte size */
- if(H5O_get_info(&oh_loc, &oinfo, H5P_DATASET_XFER_DEFAULT) < 0)
+ if(H5O_get_info(&oh_loc, H5P_DATASET_XFER_DEFAULT, FALSE, &oinfo) < 0)
FAIL_STACK_ERROR
if(oinfo.hdr.space.total >=256)
TEST_ERROR
@@ -161,7 +161,7 @@ main(void)
FAIL_STACK_ERROR
/* Make certain that chunk #0 in the object header will be encoded with a 2-byte size */
- if(H5O_get_info(&oh_loc, &oinfo, H5P_DATASET_XFER_DEFAULT) < 0)
+ if(H5O_get_info(&oh_loc, H5P_DATASET_XFER_DEFAULT, FALSE, &oinfo) < 0)
FAIL_STACK_ERROR
if(oinfo.hdr.space.total < 256)
TEST_ERROR