summaryrefslogtreecommitdiffstats
path: root/src/H5FS.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-05-24 06:40:23 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-05-24 06:40:23 (GMT)
commita2bafdc7a1021ca608b39f96d1f518701dbd45f8 (patch)
treec4f366b64d991b47c2fa590613597b10adc56339 /src/H5FS.c
parent216fffd7cc8c6ff3bba2667a6fa62ea7bed740f8 (diff)
downloadhdf5-a2bafdc7a1021ca608b39f96d1f518701dbd45f8.zip
hdf5-a2bafdc7a1021ca608b39f96d1f518701dbd45f8.tar.gz
hdf5-a2bafdc7a1021ca608b39f96d1f518701dbd45f8.tar.bz2
Minor H5FS tweaks.
Diffstat (limited to 'src/H5FS.c')
-rw-r--r--src/H5FS.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FS.c b/src/H5FS.c
index ec2dc11..e1a760f 100644
--- a/src/H5FS.c
+++ b/src/H5FS.c
@@ -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 */