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/H5Pfapl.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/H5Pfapl.c')
-rw-r--r-- | src/H5Pfapl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Pfapl.c b/src/H5Pfapl.c index 089bfb9..7a44e86 100644 --- a/src/H5Pfapl.c +++ b/src/H5Pfapl.c @@ -920,6 +920,7 @@ H5Pget_driver_info(hid_t plist_id) void *ret_value; /* Return value */ FUNC_ENTER_API(NULL) + H5TRACE1("*x", "i", plist_id); if(NULL == (plist = (H5P_genplist_t *)H5I_object_verify(plist_id, H5I_GENPROP_LST))) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, NULL, "not a property list") |