diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-05-08 05:10:26 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-05-08 05:10:26 (GMT) |
commit | 83d37604d35c55971aa03c4acb59826e9a4a3abe (patch) | |
tree | 2fa4de25b9912ee9fdad6598a2291e68e38a1005 | |
parent | 674e9f842cea8ab59339dc8cccf040872fe6ece2 (diff) | |
download | hdf5-83d37604d35c55971aa03c4acb59826e9a4a3abe.zip hdf5-83d37604d35c55971aa03c4acb59826e9a4a3abe.tar.gz hdf5-83d37604d35c55971aa03c4acb59826e9a4a3abe.tar.bz2 |
[svn-r27040] Moved '*' in H5PLget_loading_state() so that bin/trace would correctly
process it and ran bin/trace.
Tested on: h5committest
-rw-r--r-- | src/H5FD.c | 2 | ||||
-rw-r--r-- | src/H5PL.c | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -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) @@ -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; |