summaryrefslogtreecommitdiffstats
path: root/src/H5HFcache.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2013-10-24 15:17:28 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2013-10-24 15:17:28 (GMT)
commitbfd1c84d5cdc403c1414395cd49197cd4fc74108 (patch)
tree9fe331902a57540f6dbc25b4045f71e98ec4a40c /src/H5HFcache.c
parent9729a518b49a2217307c3c7ce9b33b064fc83147 (diff)
downloadhdf5-bfd1c84d5cdc403c1414395cd49197cd4fc74108.zip
hdf5-bfd1c84d5cdc403c1414395cd49197cd4fc74108.tar.gz
hdf5-bfd1c84d5cdc403c1414395cd49197cd4fc74108.tar.bz2
[svn-r24353] Fixes for parameter declarations and warnings.
Diffstat (limited to 'src/H5HFcache.c')
-rw-r--r--src/H5HFcache.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5HFcache.c b/src/H5HFcache.c
index c91ef1b..b7b4111 100644
--- a/src/H5HFcache.c
+++ b/src/H5HFcache.c
@@ -407,9 +407,9 @@ H5HF_cache_hdr_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_udata)
const uint8_t *p; /* Pointer into raw data buffer */
uint32_t stored_chksum; /* Stored metadata checksum value */
uint32_t computed_chksum; /* Computed metadata checksum value */
- size_t tries, max_tries; /* The # of read attempts */
- size_t fixed_tries; /* The # of read attempts for the minimum portion */
- size_t retries; /* The # of retries */
+ unsigned tries, max_tries; /* The # of read attempts */
+ unsigned fixed_tries; /* The # of read attempts for the minimum portion */
+ unsigned retries; /* The # of retries */
H5HF_hdr_t *ret_value; /* Return value */
FUNC_ENTER_NOAPI_NOINIT
@@ -1314,9 +1314,9 @@ H5HF_cache_dblock_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_udata)
haddr_t heap_addr; /* Address of heap header in the file */
uint32_t computed_chksum; /* Computed metadata checksum value */
uint32_t stored_chksum; /* Metadata checksum value */
- size_t tries, max_tries; /* The # of read attempts */
- size_t retries; /* The # of retries */
- size_t chk_size; /* The size for validating checksum */
+ unsigned tries, max_tries; /* The # of read attempts */
+ unsigned retries; /* The # of retries */
+ size_t chk_size; /* The size for validating checksum */
uint8_t *chk_p; /* Pointer to the area for validating checksum */
size_t read_size; /* Size of filtered direct block to read */
H5HF_direct_t *ret_value; /* Return value */