diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-02-26 22:36:44 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-02-26 22:36:44 (GMT) |
commit | 4b0293ce89b9e3ddb8a98e598dee3de03ffb4074 (patch) | |
tree | 69da330073fc40934ece65a82b085699c72bba8a /src/H5I.c | |
parent | 036ecfa32b2b8aeee5f842b18a755af7850196ab (diff) | |
download | hdf5-4b0293ce89b9e3ddb8a98e598dee3de03ffb4074.zip hdf5-4b0293ce89b9e3ddb8a98e598dee3de03ffb4074.tar.gz hdf5-4b0293ce89b9e3ddb8a98e598dee3de03ffb4074.tar.bz2 |
[svn-r26322] Merge of r26246 and r26249 from the trunk
Fixes a bug in the bin/trace script that prevented API calls which
return a pointer from receiving TRACE macros.
Also removes the NO TRACE warnings, which we decided were distracting
and unnecessary.
Tested on: jam (minor change)
Diffstat (limited to 'src/H5I.c')
-rw-r--r-- | src/H5I.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1031,6 +1031,7 @@ H5Iobject_verify(hid_t id, H5I_type_t id_type) void * ret_value; /* Return value */ FUNC_ENTER_API(NULL) + H5TRACE2("*x", "iIt", id, id_type); if(H5I_IS_LIB_TYPE(id_type)) HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, NULL, "cannot call public function on library type") @@ -1171,6 +1172,7 @@ H5Iremove_verify(hid_t id, H5I_type_t id_type) void * ret_value; /* Return value */ FUNC_ENTER_API(NULL) + H5TRACE2("*x", "iIt", id, id_type); if(H5I_IS_LIB_TYPE(id_type)) HGOTO_ERROR(H5E_ATOM, H5E_BADGROUP, NULL, "cannot call public function on library type") @@ -2052,6 +2054,7 @@ H5Isearch(H5I_type_t type, H5I_search_func_t func, void *key) void *ret_value; /* Return value */ FUNC_ENTER_API(NULL) + H5TRACE3("*x", "Itx*x", type, func, key); /* Check arguments */ if(H5I_IS_LIB_TYPE(type)) |