diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-22 19:56:03 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-22 19:56:03 (GMT) |
commit | edf124f40bc52044ba7f020225029d05190ffd39 (patch) | |
tree | 81bf09fb5119841275312c0d19523e6eef517f8c /src/H5HFcache.c | |
parent | 249acc03550e9cb2ed3cfaa56737215910a7a194 (diff) | |
download | hdf5-edf124f40bc52044ba7f020225029d05190ffd39.zip hdf5-edf124f40bc52044ba7f020225029d05190ffd39.tar.gz hdf5-edf124f40bc52044ba7f020225029d05190ffd39.tar.bz2 |
[svn-r18616] Description:
Clean up compiler warnings.
Tested on:
Mac OS X/32 10.6.3 (amazon) w/debug
(too minor to require h5committest)
Diffstat (limited to 'src/H5HFcache.c')
-rw-r--r-- | src/H5HFcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HFcache.c b/src/H5HFcache.c index 9c17ef6..2da0375 100644 --- a/src/H5HFcache.c +++ b/src/H5HFcache.c @@ -715,7 +715,7 @@ H5HF_cache_iblock_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, const void *_nrows haddr_t heap_addr; /* Address of heap header in the file */ uint32_t stored_chksum; /* Stored metadata checksum value */ uint32_t computed_chksum; /* Computed metadata checksum value */ - size_t u; /* Local index variable */ + unsigned u; /* Local index variable */ H5HF_indirect_t *ret_value; /* Return value */ FUNC_ENTER_NOAPI_NOINIT(H5HF_cache_iblock_load) |