diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-04-21 00:19:15 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-04-24 19:48:47 (GMT) |
commit | 87ceb783920c63cf374c08f17d7d601923481459 (patch) | |
tree | 3d95702821277cc9cc6d7cab55b07429d37017b7 /src/H5PL.c | |
parent | c0a8eb362cc22cbfabe44456d83faeb47f946a65 (diff) | |
download | hdf5-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.c | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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() */ |