diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-08-12 03:56:45 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-08-12 03:56:45 (GMT) |
commit | 9cb6f1ae5dae4c6d261e7ed20f70ca02f26da7e6 (patch) | |
tree | 89ff1d9af297b61b2dd6b6c9f698d8bc1d1e26f4 /src/H5Ppublic.h | |
parent | 80c02cc6f1ba4e4c564a862c24029c1230a5835d (diff) | |
download | hdf5-9cb6f1ae5dae4c6d261e7ed20f70ca02f26da7e6.zip hdf5-9cb6f1ae5dae4c6d261e7ed20f70ca02f26da7e6.tar.gz hdf5-9cb6f1ae5dae4c6d261e7ed20f70ca02f26da7e6.tar.bz2 |
[svn-r4329] Purpose:
Bug Fix
Description:
The datatype conversion buffer size was only halfway converted from hsize_t
to size_t and was causing problems. Also, the H5P_peek_<foo> routines have
a bunch of identical code.
Solution:
Finished converting the datatype conversion buffer size to size_t and
cleaned up the implementation of the H5P_peek_<foo> routines to call a
common routine instead of reimplementing a bunch of code.
Platforms tested:
Solaris 2.7 (arabica)
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index ded0a0b..9b73102 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -182,7 +182,7 @@ __DLL__ hid_t H5Pget_driver(hid_t plist_id); __DLL__ void *H5Pget_driver_info(hid_t plist_id); __DLL__ herr_t H5Pset_buffer(hid_t plist_id, size_t size, void *tconv, void *bkg); -__DLL__ hsize_t H5Pget_buffer(hid_t plist_id, void **tconv/*out*/, +__DLL__ size_t H5Pget_buffer(hid_t plist_id, void **tconv/*out*/, void **bkg/*out*/); __DLL__ herr_t H5Pset_preserve(hid_t plist_id, hbool_t status); __DLL__ int H5Pget_preserve(hid_t plist_id); |