diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-02-20 13:04:19 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-02-20 13:04:19 (GMT) |
commit | 5867b6db9ee1dc9ed5db953351dbefe405791f2b (patch) | |
tree | 4c984c6c099f0312580abe01d4ea70ae843e7358 /src/H5I.c | |
parent | 3eeed2f1d558bd74c2360b31366e2650026d165f (diff) | |
download | hdf5-5867b6db9ee1dc9ed5db953351dbefe405791f2b.zip hdf5-5867b6db9ee1dc9ed5db953351dbefe405791f2b.tar.gz hdf5-5867b6db9ee1dc9ed5db953351dbefe405791f2b.tar.bz2 |
[svn-r26246] Corrects a regular expression in the bin/trace Perl script that did not
match API calls which return a pointer.
Fixes: HDFFV-9141
Tested on: h5committest
Diffstat (limited to 'src/H5I.c')
-rw-r--r-- | src/H5I.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -883,6 +883,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") @@ -1023,6 +1024,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") @@ -1871,6 +1873,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)) |