summaryrefslogtreecommitdiffstats
path: root/src/H5Ocache.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/H5Ocache.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/H5Ocache.c')
-rw-r--r--src/H5Ocache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Ocache.c b/src/H5Ocache.c
index 35d7f44..d682253 100644
--- a/src/H5Ocache.c
+++ b/src/H5Ocache.c
@@ -318,9 +318,9 @@ H5O_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_udata)
size_t spec_read_size; /* Size of buffer to speculatively read in */
size_t buf_size; /* Size of prefix+chunk #0 buffer */
haddr_t eoa; /* Relative end of file address */
- size_t tries, max_tries; /* The # of read attempts */
- size_t retries; /* The # of retries */
- size_t fixed_tries; /* The # of read attempts for prefix */
+ unsigned tries, max_tries; /* The # of read attempts */
+ unsigned retries; /* The # of retries */
+ unsigned fixed_tries; /* The # of read attempts for prefix */
uint32_t stored_chksum; /* Stored metadata checksum value */
uint32_t computed_chksum; /* Computed metadata checksum value */
H5O_t *ret_value; /* Return value */