diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-08-25 20:27:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-08-25 20:27:07 (GMT) |
commit | 52839cdf69f02c99a4a25f65ec9c21f698ad81a6 (patch) | |
tree | f0a55b3d0865894532eb34d3927a43e38cfd58d2 /test/set_extent.c | |
parent | d9e64dce7fefd8ff746a2ea9aa03607b67f62e12 (diff) | |
download | hdf5-52839cdf69f02c99a4a25f65ec9c21f698ad81a6.zip hdf5-52839cdf69f02c99a4a25f65ec9c21f698ad81a6.tar.gz hdf5-52839cdf69f02c99a4a25f65ec9c21f698ad81a6.tar.bz2 |
[svn-r19297] Description:
Whack a few more memory errors exposed by valgrind.
Make the debugging dump output a little bit prettier.
Tested on:
Mac OS X/32 10.6.4 (amazon) w/debug
(h5committest forthcoming)
Diffstat (limited to 'test/set_extent.c')
-rw-r--r-- | test/set_extent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/set_extent.c b/test/set_extent.c index 0582c41..191962d 100644 --- a/test/set_extent.c +++ b/test/set_extent.c @@ -130,10 +130,10 @@ int main( void ) if((fapl2 = H5Pcopy(fapl)) < 0) TEST_ERROR /* Set chunk cache so only part of the chunks can be cached on fapl */ - if(H5Pset_cache(fapl, 0, 8, 256 * sizeof(int), 0.75) < 0) TEST_ERROR + if(H5Pset_cache(fapl, 0, (size_t)8, 256 * sizeof(int), 0.75) < 0) TEST_ERROR /* Disable chunk caching on fapl2 */ - if(H5Pset_cache(fapl2, 0, 0, 0, 0.) < 0) TEST_ERROR + if(H5Pset_cache(fapl2, 0, (size_t)0, (size_t)0, 0.) < 0) TEST_ERROR /* Set the "use the latest version of the format" bounds for creating objects in the file */ if(H5Pset_libver_bounds(fapl2, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0) TEST_ERROR |