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/H5Dprivate.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/H5Dprivate.h')
-rw-r--r-- | src/H5Dprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h index ef942f7..288de47 100644 --- a/src/H5Dprivate.h +++ b/src/H5Dprivate.h @@ -54,7 +54,7 @@ typedef struct H5D_create_t { /* Data transfer properties */ /* Definitions for maximum temp buffer size property */ #define H5D_XFER_MAX_TEMP_BUF_NAME "max_temp_buf" -#define H5D_XFER_MAX_TEMP_BUF_SIZE sizeof(hsize_t) +#define H5D_XFER_MAX_TEMP_BUF_SIZE sizeof(size_t) #define H5D_XFER_MAX_TEMP_BUF_DEF (1024*1024) /* Definitions for type conversion buffer property */ #define H5D_XFER_TCONV_BUF_NAME "tconv_buf" |