diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-18 14:05:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-18 14:05:38 (GMT) |
commit | ef9c40754bdf5b5be1bb92e632da5e17a8d6913c (patch) | |
tree | d7066aba588261134019b8e02f381bf4f84d38ca /src/H5Tconv.c | |
parent | 139af5a5177697500b022482dddbf218a420d417 (diff) | |
download | hdf5-ef9c40754bdf5b5be1bb92e632da5e17a8d6913c.zip hdf5-ef9c40754bdf5b5be1bb92e632da5e17a8d6913c.tar.gz hdf5-ef9c40754bdf5b5be1bb92e632da5e17a8d6913c.tar.bz2 |
[svn-r5200] Purpose:
Code Cleanup
Description:
Clean up compiler warnings from the last bunch of checkins
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'src/H5Tconv.c')
-rw-r--r-- | src/H5Tconv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Tconv.c b/src/H5Tconv.c index bb2edd6..a32efa4 100644 --- a/src/H5Tconv.c +++ b/src/H5Tconv.c @@ -2175,9 +2175,9 @@ H5T_conv_vlen(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, hsize_t nelmts, size_t src_base_size, dst_base_size;/*source & destination base size*/ size_t src_size, dst_size; /*source & destination total size in bytes*/ void *conv_buf=NULL; /*temporary conversion buffer */ - hsize_t conv_buf_size=0; /*size of conversion buffer in bytes */ + size_t conv_buf_size=0; /*size of conversion buffer in bytes */ void *bkg_buf=NULL; /*temporary background buffer */ - hsize_t bkg_buf_size=0; /*size of background buffer in bytes */ + size_t bkg_buf_size=0; /*size of background buffer in bytes */ uint8_t dbuf[64],*dbuf_ptr=dbuf;/*temp destination buffer */ int direction; /*direction of traversal */ hsize_t elmtno; /*element number counter */ @@ -2409,7 +2409,7 @@ H5T_conv_array(hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, hsize_t nelmts, hsize_t elmtno; /*element number counter */ int i; /* local index variable */ void *bkg_buf=NULL; /*temporary background buffer */ - hsize_t bkg_buf_size=0; /*size of background buffer in bytes */ + size_t bkg_buf_size=0; /*size of background buffer in bytes */ FUNC_ENTER (H5T_conv_array, FAIL); |