mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-04-12 17:31:09 +08:00
[svn-r23985] Merge commit 23937 from reduce_warning branch
Remove unused param (src) and unused var (hl) warnings Tested on koala
This commit is contained in:
parent
5dcd9c2dfc
commit
345e57b0b1
@ -1813,10 +1813,9 @@ static int test_valid_path(void)
|
||||
{
|
||||
hid_t file_id, group;
|
||||
herr_t status;
|
||||
FILE *fp = NULL;
|
||||
htri_t path_valid;
|
||||
const char *data_string_in = "test";
|
||||
|
||||
|
||||
TESTING("H5LTpath_valid");
|
||||
|
||||
/* Create a new file using default properties. */
|
||||
|
@ -2358,7 +2358,7 @@ done:
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
H5D__mark(H5D_t *dataset, hid_t dxpl_id, unsigned flags)
|
||||
H5D__mark(H5D_t *dataset, hid_t UNUSED dxpl_id, unsigned flags)
|
||||
{
|
||||
herr_t ret_value = SUCCEED; /* Return value */
|
||||
|
||||
|
@ -1784,6 +1784,7 @@ H5FD_multi_read(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr,
|
||||
H5FD_mem_t mt, mmt, hi = H5FD_MEM_DEFAULT;
|
||||
haddr_t start_addr = 0;
|
||||
static const char *func = "H5FD_multi_read"; /* Function Name for error reporting */
|
||||
dxpl_id = dxpl_id; /* Suppress compiler warning */
|
||||
|
||||
/* Clear the error stack */
|
||||
H5Eclear2(H5E_DEFAULT);
|
||||
@ -1836,6 +1837,7 @@ H5FD_multi_write(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr,
|
||||
H5FD_mem_t mt, mmt, hi = H5FD_MEM_DEFAULT;
|
||||
haddr_t start_addr = 0;
|
||||
static const char *func = "H5FD_multi_read"; /* Function Name for error reporting */
|
||||
dxpl_id = dxpl_id; /* Suppress compiler warning */
|
||||
|
||||
/* Clear the error stack */
|
||||
H5Eclear2(H5E_DEFAULT);
|
||||
|
@ -157,7 +157,7 @@ H5HF_man_insert(H5HF_hdr_t *hdr, hid_t dxpl_id, size_t obj_size, const void *obj
|
||||
HDassert(sec_node->sect_info.state == H5FS_SECT_LIVE);
|
||||
|
||||
/* Retrieve direct block address from section */
|
||||
if(H5HF_sect_single_dblock_info(hdr, dxpl_id, sec_node, &dblock_addr, &dblock_size) < 0)
|
||||
if(H5HF_sect_single_dblock_info(hdr, sec_node, &dblock_addr, &dblock_size) < 0)
|
||||
HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL, "can't retrieve direct block information")
|
||||
|
||||
/* Lock direct block */
|
||||
|
@ -761,7 +761,7 @@ H5_DLL H5HF_free_section_t *H5HF_sect_single_new(hsize_t sect_off,
|
||||
size_t sect_size, H5HF_indirect_t *parent, unsigned par_entry);
|
||||
H5_DLL herr_t H5HF_sect_single_revive(H5HF_hdr_t *hdr, hid_t dxpl_id,
|
||||
H5HF_free_section_t *sect);
|
||||
H5_DLL herr_t H5HF_sect_single_dblock_info(H5HF_hdr_t *hdr, hid_t dxpl_id,
|
||||
H5_DLL herr_t H5HF_sect_single_dblock_info(H5HF_hdr_t *hdr,
|
||||
H5HF_free_section_t *sect, haddr_t *dblock_addr, size_t *dblock_size);
|
||||
H5_DLL herr_t H5HF_sect_single_reduce(H5HF_hdr_t *hdr, hid_t dxpl_id,
|
||||
H5HF_free_section_t *sect, size_t amt);
|
||||
|
@ -648,7 +648,7 @@ done:
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
herr_t
|
||||
H5HF_sect_single_dblock_info(H5HF_hdr_t *hdr, hid_t dxpl_id,
|
||||
H5HF_sect_single_dblock_info(H5HF_hdr_t *hdr,
|
||||
H5HF_free_section_t *sect, haddr_t *dblock_addr, size_t *dblock_size)
|
||||
{
|
||||
FUNC_ENTER_NOAPI_NOERR
|
||||
@ -766,7 +766,7 @@ H5HF_sect_single_full_dblock(H5HF_hdr_t *hdr, hid_t dxpl_id,
|
||||
HDassert(hdr);
|
||||
|
||||
/* Retrieve direct block address from section */
|
||||
if(H5HF_sect_single_dblock_info(hdr, dxpl_id, sect, &dblock_addr, &dblock_size) < 0)
|
||||
if(H5HF_sect_single_dblock_info(hdr, sect, &dblock_addr, &dblock_size) < 0)
|
||||
HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL, "can't retrieve direct block information")
|
||||
|
||||
/* Check for section occupying entire direct block */
|
||||
@ -1087,7 +1087,7 @@ H5HF_sect_single_shrink(H5FS_section_info_t **_sect, void UNUSED *_udata)
|
||||
HGOTO_ERROR(H5E_HEAP, H5E_CANTINIT, FAIL, "can't revive single free section")
|
||||
|
||||
/* Retrieve direct block address from section */
|
||||
if(H5HF_sect_single_dblock_info(hdr, dxpl_id, (*sect), &dblock_addr, &dblock_size) < 0)
|
||||
if(H5HF_sect_single_dblock_info(hdr, (*sect), &dblock_addr, &dblock_size) < 0)
|
||||
HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL, "can't retrieve direct block information")
|
||||
|
||||
/* Protect the direct block for the section */
|
||||
@ -1197,7 +1197,7 @@ H5HF_sect_single_valid(const H5FS_section_class_t UNUSED *cls, const H5FS_sectio
|
||||
|
||||
/* Retrieve direct block address from section */
|
||||
/* (Casting away const OK - QAK) */
|
||||
status = H5HF_sect_single_dblock_info(iblock->hdr, H5AC_dxpl_id, (H5HF_free_section_t *)sect, &dblock_addr, &dblock_size);
|
||||
status = H5HF_sect_single_dblock_info(iblock->hdr, (H5HF_free_section_t *)sect, &dblock_addr, &dblock_size);
|
||||
HDassert(status >= 0);
|
||||
HDassert(H5F_addr_eq(iblock->ents[sect->u.single.par_entry].addr, dblock_addr));
|
||||
HDassert(dblock_size > 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user