summaryrefslogtreecommitdiffstats
path: root/src/H5P.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-06-11 22:36:12 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-06-11 22:36:12 (GMT)
commit247a7e49a263e34d94459769449bfc57ac1a58a1 (patch)
treea33b6bba81cb6744475d7942d62161a2bb7e82f6 /src/H5P.c
parent2d9628c3769b119045c1e247ef0b0795f2d35a64 (diff)
downloadhdf5-247a7e49a263e34d94459769449bfc57ac1a58a1.zip
hdf5-247a7e49a263e34d94459769449bfc57ac1a58a1.tar.gz
hdf5-247a7e49a263e34d94459769449bfc57ac1a58a1.tar.bz2
[svn-r3994] 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 d4e15b2..45aaa8b 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -621,7 +621,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)) ||