summaryrefslogtreecommitdiffstats
path: root/src/H5P.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-06-11 22:35:08 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-06-11 22:35:08 (GMT)
commit4d245ec8566f7bd91ff48caec6ff86bea3cebf78 (patch)
treefa5f5ab9c00ab4415c2d71c9b1ef8c7afb0236de /src/H5P.c
parentdbdeacb7ad50b51094ebf11e13a6f3b3f91af63b (diff)
downloadhdf5-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5P.c b/src/H5P.c
index 442f40c..28544a3 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -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)) ||