summaryrefslogtreecommitdiffstats
path: root/test/istore.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-12-11 18:49:26 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-12-11 18:49:26 (GMT)
commitdbf689c4e6dcb07b7956baeac90e8fd1b3fb7ddf (patch)
treec93893402a16d77d3c6f2de70abfb22690ad4601 /test/istore.c
parentefc14a5341042f5d04f0578bd9820495f1e11d79 (diff)
downloadhdf5-dbf689c4e6dcb07b7956baeac90e8fd1b3fb7ddf.zip
hdf5-dbf689c4e6dcb07b7956baeac90e8fd1b3fb7ddf.tar.gz
hdf5-dbf689c4e6dcb07b7956baeac90e8fd1b3fb7ddf.tar.bz2
[svn-r143] ./test/dsets.c
Added test for creation of chunked datasets. ./test/dsets.c ./test/istore.c ./test/tfile.c Template changes. ./test/th5p.c Accommodated changes to H5P.
Diffstat (limited to 'test/istore.c')
-rw-r--r--test/istore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/istore.c b/test/istore.c
index 589829e..20b1179 100644
--- a/test/istore.c
+++ b/test/istore.c
@@ -523,7 +523,7 @@ main (int argc, char *argv[])
herr_t status;
int nerrors = 0;
uintn size_of_test;
- uint8 offset_size;
+ size_t offset_size;
H5G_entry_t *ent = NULL;
hid_t template_id;
H5F_create_t *creation_template = NULL;
@@ -559,7 +559,7 @@ main (int argc, char *argv[])
*/
offset_size = 8;
template_id = H5Ccreate (H5C_FILE_CREATE);
- H5Csetparm (template_id, H5F_OFFSET_SIZE, &offset_size);
+ H5Cset_prop (template_id, H5F_SIZEOF_ADDR, offset_size);
creation_template = H5Aatom_object (template_id);
/* Create the test file */