summaryrefslogtreecommitdiffstats
path: root/src/H5PL.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-05-08 05:10:26 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-05-08 05:10:26 (GMT)
commit83d37604d35c55971aa03c4acb59826e9a4a3abe (patch)
tree2fa4de25b9912ee9fdad6598a2291e68e38a1005 /src/H5PL.c
parent674e9f842cea8ab59339dc8cccf040872fe6ece2 (diff)
downloadhdf5-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
Diffstat (limited to 'src/H5PL.c')
-rw-r--r--src/H5PL.c3
1 files changed, 2 insertions, 1 deletions
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;