[svn-r27040] Moved '*' in H5PLget_loading_state() so that bin/trace would correctly

process it and ran bin/trace.

Tested on: h5committest
This commit is contained in:
Dana Robinson 2015-05-08 00:10:26 -05:00
parent 674e9f842c
commit 83d37604d3
2 changed files with 3 additions and 2 deletions

View File

@ -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)

View File

@ -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;