diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-05-24 06:40:23 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-05-24 06:40:23 (GMT) |
commit | a2bafdc7a1021ca608b39f96d1f518701dbd45f8 (patch) | |
tree | c4f366b64d991b47c2fa590613597b10adc56339 /src/H5FS.c | |
parent | 216fffd7cc8c6ff3bba2667a6fa62ea7bed740f8 (diff) | |
download | hdf5-a2bafdc7a1021ca608b39f96d1f518701dbd45f8.zip hdf5-a2bafdc7a1021ca608b39f96d1f518701dbd45f8.tar.gz hdf5-a2bafdc7a1021ca608b39f96d1f518701dbd45f8.tar.bz2 |
Minor H5FS tweaks.
Diffstat (limited to 'src/H5FS.c')
-rw-r--r-- | src/H5FS.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1195,14 +1195,14 @@ H5FS_get_sect_count(const H5FS_t *frsp, hsize_t *tot_sect_count) * * Purpose: Verify that the free space manager is mostly sane * - * Return: SUCCEED (Can't fail) + * Return: void * * Programmer: Quincey Koziol * Jul 17 2006 * *------------------------------------------------------------------------- */ -herr_t +void H5FS__assert(const H5FS_t *fspace) { FUNC_ENTER_PACKAGE_NOERR @@ -1228,7 +1228,7 @@ HDfprintf(stderr, "%s: fspace->tot_sect_count = %Hu\n", "H5FS__assert", fspace-> HDassert(fspace->serial_sect_count > 0 || fspace->ghost_sect_count == 0); #endif /* QAK */ - FUNC_LEAVE_NOAPI(SUCCEED) + FUNC_LEAVE_NOAPI_VOID } /* end H5FS__assert() */ #endif /* H5FS_DEBUG_ASSERT */ |