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/enum.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/enum.c')
-rw-r--r-- | test/enum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/enum.c b/test/enum.c index 4599a7c..c627af1 100644 --- a/test/enum.c +++ b/test/enum.c @@ -71,7 +71,7 @@ test_named(hid_t file) if(H5Tclose(type) < 0) FAIL_STACK_ERROR /* A smaller type */ - if((type = H5Tcreate(H5T_ENUM, 1)) < 0) FAIL_STACK_ERROR + if((type = H5Tcreate(H5T_ENUM, (size_t)1)) < 0) FAIL_STACK_ERROR if(H5Tenum_insert(type, "RED", CPTR(val8, E1_RED )) < 0) FAIL_STACK_ERROR if(H5Tenum_insert(type, "GREEN", CPTR(val8, E1_GREEN)) < 0) FAIL_STACK_ERROR if(H5Tenum_insert(type, "BLUE", CPTR(val8, E1_BLUE )) < 0) FAIL_STACK_ERROR |