summaryrefslogtreecommitdiffstats
path: root/src/H5PL.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-04-24 20:50:05 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-04-25 14:40:54 (GMT)
commit2599c231642879dad505291f7950d5bd796d80e1 (patch)
treecd839d286b6bddcafeecbe1ba55c00156b209136 /src/H5PL.c
parent61d979c1e9173b5c3fe81f7dd6ce72dff414d623 (diff)
downloadhdf5-2599c231642879dad505291f7950d5bd796d80e1.zip
hdf5-2599c231642879dad505291f7950d5bd796d80e1.tar.gz
hdf5-2599c231642879dad505291f7950d5bd796d80e1.tar.bz2
Change signature of H5PLget_size
Diffstat (limited to 'src/H5PL.c')
-rw-r--r--src/H5PL.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index 02c8f00..bc69a25 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -607,7 +607,7 @@ ssize_t
H5PLget(unsigned int index, char *pathname/*out*/, size_t size)
{
ssize_t ret_value = 0; /* Return value */
- ssize_t len = 0; /* Length of pathname */
+ size_t len = 0; /* Length of pathname */
char *dl_path = NULL;
FUNC_ENTER_API(FAIL)
@@ -626,7 +626,7 @@ H5PLget(unsigned int index, char *pathname/*out*/, size_t size)
} /* end if */
/* Set return value */
- ret_value = len;
+ ret_value = (ssize_t)len;
done:
FUNC_LEAVE_API(ret_value)
@@ -638,17 +638,19 @@ done:
*
* Purpose: Query the size of the current list of plugin paths.
*
- * Return: Plugin path size (can't indicate failure due to unsigned type)
+ * Return: Plugin path size
*
*-------------------------------------------------------------------------
*/
-unsigned int
-H5PLsize(void)
+herr_t
+H5PLsize(unsigned int *listsize)
{
- unsigned int ret_value = (unsigned int)H5PL_num_paths_g;
+ herr_t ret_value = SUCCEED; /* Return value */
+
+ FUNC_ENTER_API(FAIL)
+ H5TRACE1("e", "*Iu", listsize);
- FUNC_ENTER_API(0)
- H5TRACE0("Iu","");
+ *listsize = (unsigned int)H5PL_num_paths_g;
done:
FUNC_LEAVE_API(ret_value)