summaryrefslogtreecommitdiffstats
path: root/src/H5PL.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-04-21 00:19:15 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-04-24 19:48:47 (GMT)
commit87ceb783920c63cf374c08f17d7d601923481459 (patch)
tree3d95702821277cc9cc6d7cab55b07429d37017b7 /src/H5PL.c
parentc0a8eb362cc22cbfabe44456d83faeb47f946a65 (diff)
downloadhdf5-87ceb783920c63cf374c08f17d7d601923481459.zip
hdf5-87ceb783920c63cf374c08f17d7d601923481459.tar.gz
hdf5-87ceb783920c63cf374c08f17d7d601923481459.tar.bz2
Fixed problems that prevent bin/trace from marking up some functions.
Diffstat (limited to 'src/H5PL.c')
-rw-r--r--src/H5PL.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index bf69d3d..02c8f00 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -638,14 +638,20 @@ done:
*
* Purpose: Query the size of the current list of plugin paths.
*
- * Return: Non-negative or success.
+ * Return: Plugin path size (can't indicate failure due to unsigned type)
*
*-------------------------------------------------------------------------
*/
unsigned int
H5PLsize(void)
{
- return (unsigned int)H5PL_num_paths_g;
+ unsigned int ret_value = (unsigned int)H5PL_num_paths_g;
+
+ FUNC_ENTER_API(0)
+ H5TRACE0("Iu","");
+
+done:
+ FUNC_LEAVE_API(ret_value)
} /* end H5PLsize() */