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/H5FAcache.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/H5FAcache.c')
-rw-r--r-- | src/H5FAcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FAcache.c b/src/H5FAcache.c index f9bf595..9caa0f3 100644 --- a/src/H5FAcache.c +++ b/src/H5FAcache.c @@ -211,7 +211,7 @@ H5FA__cache_hdr_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, const void UNUSED *u H5E_THROW(H5E_VERSION, "wrong fixed array header version") /* Fixed array class */ - id = *p++; + id = (H5FA_cls_id_t)*p++; if(id >= H5FA_NUM_CLS_ID) H5E_THROW(H5E_BADTYPE, "incorrect fixed array class") hdr->cparam.cls = H5FA_client_class_g[id]; |