diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2011-10-14 13:28:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2011-10-14 13:28:23 (GMT) |
commit | 9fa5dca9c2ebc2c3cb25ded77d37b9c666e11fbd (patch) | |
tree | 9e1f3636dc707bf0a3ef217db98cebde4efefb5c /test/h5test.h | |
parent | 56960ac85c40c3b08989ff776d2a69c6e79a6f09 (diff) | |
download | hdf5-9fa5dca9c2ebc2c3cb25ded77d37b9c666e11fbd.zip hdf5-9fa5dca9c2ebc2c3cb25ded77d37b9c666e11fbd.tar.gz hdf5-9fa5dca9c2ebc2c3cb25ded77d37b9c666e11fbd.tar.bz2 |
[svn-r21561] Description:
Correct error in loading local heap prefix & data block from the file.
Sometimes the local heap's prefix could be loaded before the data block (e.g.
using H5Oget_info), but then when the data block was loaded later, the free
list information would get lost, causing the heap's size to grow larger than
necessary. This is Jira bug #HDFFV-7767
Tested on:
Mac OS X/32 10.7.2 (amazon) w/debug
(h5committest coming up)
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h5test.h b/test/h5test.h index 5d3fb17..f36240e 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -150,7 +150,7 @@ H5TEST_DLL void h5_reset(void); H5TEST_DLL void h5_show_hostname(void); H5TEST_DLL h5_stat_size_t h5_get_file_size(const char *filename, hid_t fapl); H5TEST_DLL int print_func(const char *format, ...); -H5TEST_DLL int h5_make_local_copy(char *origfilename, char *local_copy_name); +H5TEST_DLL int h5_make_local_copy(const char *origfilename, const char *local_copy_name); H5TEST_DLL herr_t h5_verify_cached_stabs(const char *base_name[], hid_t fapl); /* Routines for operating on the list of tests (for the "all in one" tests) */ |