mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r13769] Description:
Clean up minor compiler warnings Tested on: FreeBSD/32 6.2 (duty)
This commit is contained in:
parent
603f1c7221
commit
eff3014d97
@ -289,7 +289,7 @@ H5A_dense_btree2_name_compare(const void *_bt2_udata, const void *_bt2_rec)
|
||||
const H5A_dense_bt2_name_rec_t *bt2_rec = (const H5A_dense_bt2_name_rec_t *)_bt2_rec;
|
||||
herr_t ret_value; /* Return value */
|
||||
|
||||
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5A_dense_btree2_name_compare)
|
||||
FUNC_ENTER_NOAPI_NOINIT(H5A_dense_btree2_name_compare)
|
||||
|
||||
/* Sanity check */
|
||||
HDassert(bt2_udata);
|
||||
|
@ -230,7 +230,7 @@ H5RS_decr(H5RS_str_t *rs)
|
||||
/* Decrement reference count for string */
|
||||
if((--rs->n)==0) {
|
||||
if(!rs->wrapped)
|
||||
H5FL_BLK_FREE(str_buf,rs->s);
|
||||
(void)H5FL_BLK_FREE(str_buf,rs->s);
|
||||
H5FL_FREE(H5RS_str_t,rs);
|
||||
} /* end if */
|
||||
|
||||
|
@ -219,7 +219,7 @@ H5O_dtype_get_oloc(hid_t obj_id)
|
||||
FUNC_ENTER_NOAPI_NOINIT(H5O_dtype_get_oloc)
|
||||
|
||||
/* Get the datatype */
|
||||
if(NULL == (type = H5I_object(obj_id)))
|
||||
if(NULL == (type = (H5T_t *)H5I_object(obj_id)))
|
||||
HGOTO_ERROR(H5E_OHDR, H5E_BADATOM, NULL, "couldn't get object from ID")
|
||||
|
||||
/* Get the datatype's object header location */
|
||||
|
Loading…
x
Reference in New Issue
Block a user