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/H5B2cache.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/H5B2cache.c')
-rw-r--r-- | src/H5B2cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5B2cache.c b/src/H5B2cache.c index af329c7..09d4ee2 100644 --- a/src/H5B2cache.c +++ b/src/H5B2cache.c @@ -204,7 +204,7 @@ H5B2_cache_hdr_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, const void UNUSED *ud HGOTO_ERROR(H5E_BTREE, H5E_CANTLOAD, NULL, "wrong B-tree header version") /* B-tree class */ - id = *p++; + id = (H5B2_subid_t)*p++; if(id >= H5B2_NUM_BTREE_ID) HGOTO_ERROR(H5E_BTREE, H5E_BADTYPE, NULL, "invalid B-tree type") |