diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-09-28 13:56:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-09-28 13:56:22 (GMT) |
commit | efbadc2165e1a7a614615a0668badb9b859becdc (patch) | |
tree | 9e210635fc8ad267fedc39ff731baed3d4f8c249 /src/H5P.c | |
parent | 4b13ea45720211e6b3cd01b793259fc21a41b6be (diff) | |
download | hdf5-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.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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)) |