[svn-r13769] Description:

Clean up minor compiler warnings

Tested on:
	FreeBSD/32 6.2 (duty)
This commit is contained in:
Quincey Koziol 2007-05-18 23:58:25 -05:00
parent 603f1c7221
commit eff3014d97
3 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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 */

View File

@ -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 */