diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-11 22:35:08 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-11 22:35:08 (GMT) |
commit | 4d245ec8566f7bd91ff48caec6ff86bea3cebf78 (patch) | |
tree | fa5f5ab9c00ab4415c2d71c9b1ef8c7afb0236de /src/H5P.c | |
parent | dbdeacb7ad50b51094ebf11e13a6f3b3f91af63b (diff) | |
download | hdf5-4d245ec8566f7bd91ff48caec6ff86bea3cebf78.zip hdf5-4d245ec8566f7bd91ff48caec6ff86bea3cebf78.tar.gz hdf5-4d245ec8566f7bd91ff48caec6ff86bea3cebf78.tar.bz2 |
[svn-r3993] Purpose:
Bug fix for Pablo integration
Description:
Several API functions were using FUNC_ENTER, without using FUNC_LEAVE,
HRETURN or HRETURN_ERROR to leave the function. (Using "plain" 'return'
statements instead).
Solution:
Changed return statements to FUNC_LEAVE, HRETURN or HRETURN_ERROR, as
appropriate.
Platforms tested:
FreeBSD 4.3 (hawkwind)
Diffstat (limited to 'src/H5P.c')
-rw-r--r-- | src/H5P.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -631,7 +631,7 @@ H5Pcopy(hid_t plist_id) H5TRACE1("i","i",plist_id); if (H5P_DEFAULT==plist_id) - return H5P_DEFAULT; + HRETURN(H5P_DEFAULT); /* Check args */ if (NULL == (plist = H5I_object(plist_id)) || |