diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-29 21:03:33 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-29 21:03:33 (GMT) |
commit | b51c4f6d24fa95c3ae9c465880a2256a86bb7b47 (patch) | |
tree | 3cbd4a2addcf0654730ae74f0b842cc15aa471ee /src/H5P.c | |
parent | d4eec2cb073e4e9f02ca990cbd93480e526a130e (diff) | |
download | hdf5-b51c4f6d24fa95c3ae9c465880a2256a86bb7b47.zip hdf5-b51c4f6d24fa95c3ae9c465880a2256a86bb7b47.tar.gz hdf5-b51c4f6d24fa95c3ae9c465880a2256a86bb7b47.tar.bz2 |
[svn-r8760] Purpose:
Code cleanup & small bug fix
Description:
Regenerate dependency files
Add htri_t as separate type from hbool_t for code tracing purposes.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
too minor to require h5committest
Diffstat (limited to 'src/H5P.c')
-rw-r--r-- | src/H5P.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2942,7 +2942,7 @@ H5Pexist(hid_t id, const char *name) htri_t ret_value; /* return value */ FUNC_ENTER_API(H5Pexist, FAIL); - H5TRACE2("b","is",id,name); + H5TRACE2("t","is",id,name); /* Check arguments. */ if (H5I_GENPROP_LST != H5I_get_type(id) && H5I_GENPROP_CLS != H5I_get_type(id)) @@ -3670,7 +3670,7 @@ H5Pequal(hid_t id1, hid_t id2) htri_t ret_value=FALSE; /* return value */ FUNC_ENTER_API(H5Pequal, FAIL); - H5TRACE2("b","ii",id1,id2); + H5TRACE2("t","ii",id1,id2); /* Check arguments. */ if ((H5I_GENPROP_LST != H5I_get_type(id1) && H5I_GENPROP_CLS != H5I_get_type(id1)) @@ -3824,7 +3824,7 @@ H5Pisa_class(hid_t plist_id, hid_t pclass_id) htri_t ret_value; /* return value */ FUNC_ENTER_API(H5Pisa_class, FAIL); - H5TRACE2("b","ii",plist_id,pclass_id); + H5TRACE2("t","ii",plist_id,pclass_id); /* Check arguments. */ if (H5I_GENPROP_LST != H5I_get_type(plist_id)) |