From 83d37604d35c55971aa03c4acb59826e9a4a3abe Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Fri, 8 May 2015 00:10:26 -0500 Subject: [svn-r27040] Moved '*' in H5PLget_loading_state() so that bin/trace would correctly process it and ran bin/trace. Tested on: h5committest --- src/H5FD.c | 2 +- src/H5PL.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/H5FD.c b/src/H5FD.c index 77b7a5b..0e4d840 100644 --- a/src/H5FD.c +++ b/src/H5FD.c @@ -1845,7 +1845,7 @@ H5FDtruncate(H5FD_t *file, hid_t dxpl_id, hbool_t closing) herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) - H5TRACE3("e", "*xiIu", file, dxpl_id, closing); + H5TRACE3("e", "*xib", file, dxpl_id, closing); /* Check args */ if(!file || !file->cls) diff --git a/src/H5PL.c b/src/H5PL.c index 619dd84..f4cd3e7 100644 --- a/src/H5PL.c +++ b/src/H5PL.c @@ -237,10 +237,11 @@ done: *------------------------------------------------------------------------- */ herr_t -H5PLget_loading_state(unsigned int* plugin_type) +H5PLget_loading_state(unsigned int *plugin_type) { herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_API(FAIL) + H5TRACE1("e", "*Iu", plugin_type); if(plugin_type) *plugin_type = H5PL_plugin_g; -- cgit v0.12