summaryrefslogtreecommitdiffstats
path: root/src/H5P.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-09-28 13:56:22 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-09-28 13:56:22 (GMT)
commitefbadc2165e1a7a614615a0668badb9b859becdc (patch)
tree9e210635fc8ad267fedc39ff731baed3d4f8c249 /src/H5P.c
parent4b13ea45720211e6b3cd01b793259fc21a41b6be (diff)
downloadhdf5-efbadc2165e1a7a614615a0668badb9b859becdc.zip
hdf5-efbadc2165e1a7a614615a0668badb9b859becdc.tar.gz
hdf5-efbadc2165e1a7a614615a0668badb9b859becdc.tar.bz2
[svn-r4488] Purpose:
Fix on Kludge Description: Forgot another chunk of parallel I/O code that needed to change for the generic property list kludge... :-/ Platforms tested: Parallel Linux 2.2.18smp (eirene)
Diffstat (limited to 'src/H5P.c')
-rw-r--r--src/H5P.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5P.c b/src/H5P.c
index e1edc1b..2372cc7 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -334,7 +334,7 @@ H5Pcreate(hid_t type)
H5P_class_t_old old_type;
FUNC_ENTER(H5Pcreate, FAIL);
- H5TRACE1("i","p",type);
+ H5TRACE1("i","i",type);
/* Kludge to detect generic property creations and divert them to the */
/* generic property list creation routine - QAK */
@@ -559,7 +559,7 @@ H5Pget_class(hid_t plist_id)
hid_t ret_value = H5P_NO_CLASS;
FUNC_ENTER(H5Pget_class, H5P_NO_CLASS);
- H5TRACE1("p","i",plist_id);
+ H5TRACE1("i","i",plist_id);
ret_value = H5P_get_class(plist_id);
FUNC_LEAVE(ret_value);
@@ -7080,6 +7080,7 @@ H5Pcopy_prop(hid_t dst_id, hid_t src_id, const char *name)
herr_t ret_value=SUCCEED; /* return value */
FUNC_ENTER (H5Pcopy_prop, FAIL);
+ H5TRACE3("e","iis",dst_id,src_id,name);
/* Check arguments. */
if ((H5I_GENPROP_LST != H5I_get_type(src_id) && H5I_GENPROP_CLS != H5I_get_type(src_id))