diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-30 00:17:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-30 00:17:17 (GMT) |
commit | 981ba55190b978b3e67223df0a7049c65c826a1a (patch) | |
tree | b34030397f3a227d6fd2aa90b0f57b26f1cab554 /src/H5Olink.c | |
parent | 03d1221bd821c397bb4a2222e3c7b49fa93fd96e (diff) | |
download | hdf5-981ba55190b978b3e67223df0a7049c65c826a1a.zip hdf5-981ba55190b978b3e67223df0a7049c65c826a1a.tar.gz hdf5-981ba55190b978b3e67223df0a7049c65c826a1a.tar.bz2 |
[svn-r17266] Description:
Clean up various compiler warnings from IRIX64 build
Tested on:
Mac OS X/32 (amazon) debug & production
(yes, I know it's not an IRIX64 system :-)
Too minor to require h5committest
Diffstat (limited to 'src/H5Olink.c')
-rw-r--r-- | src/H5Olink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Olink.c b/src/H5Olink.c index 96d4747..ffe80e7 100644 --- a/src/H5Olink.c +++ b/src/H5Olink.c @@ -146,7 +146,7 @@ H5O_link_decode(H5F_t *f, hid_t UNUSED dxpl_id, H5O_t UNUSED *open_oh, /* Check for non-default link type */ if(link_flags & H5O_LINK_STORE_LINK_TYPE) { /* Get the type of the link */ - lnk->type = *p++; + lnk->type = (H5L_type_t)*p++; if(lnk->type < H5L_TYPE_HARD || lnk->type > H5L_TYPE_MAX) HGOTO_ERROR(H5E_OHDR, H5E_CANTLOAD, NULL, "bad link type") } /* end if */ |