summaryrefslogtreecommitdiffstats
path: root/src/H5Pfapl.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2008-01-04 17:43:56 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2008-01-04 17:43:56 (GMT)
commitc0b966ba1b3f7fb34a5228b6261a6a2b767c0d96 (patch)
treefb621ed2757b631e8652050c71d42db3bcd1b62e /src/H5Pfapl.c
parentda95bdb88f848841441289051eade20d9cd7f637 (diff)
downloadhdf5-c0b966ba1b3f7fb34a5228b6261a6a2b767c0d96.zip
hdf5-c0b966ba1b3f7fb34a5228b6261a6a2b767c0d96.tar.gz
hdf5-c0b966ba1b3f7fb34a5228b6261a6a2b767c0d96.tar.bz2
[svn-r14374] Description:
Updates from running bin/reconfigure on recent changes, in preparation for making private snapshot. Also updated tracing information for recent types added to public API routines. Tested on: Linux/32 2.6.x (kagiso)
Diffstat (limited to 'src/H5Pfapl.c')
-rw-r--r--src/H5Pfapl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Pfapl.c b/src/H5Pfapl.c
index a23d31c..403e5bb 100644
--- a/src/H5Pfapl.c
+++ b/src/H5Pfapl.c
@@ -1970,6 +1970,7 @@ H5Pset_format_bounds(hid_t plist_id, H5F_format_version_t low,
herr_t ret_value = SUCCEED; /* return value */
FUNC_ENTER_API(H5Pset_format_bounds, FAIL)
+ H5TRACE3("e", "iFvFv", plist_id, low, high);
/* Check args */
/* (Note that this is _really_ restricted right now, we'll want to loosen
@@ -2014,6 +2015,7 @@ H5Pget_format_bounds(hid_t plist_id, H5F_format_version_t *low/*out*/,
herr_t ret_value = SUCCEED; /* return value */
FUNC_ENTER_API(H5Pget_format_bounds, FAIL)
+ H5TRACE3("e", "ixx", plist_id, low, high);
/* Get the plist structure */
if(NULL == (plist = H5P_object_verify(plist_id, H5P_FILE_ACCESS)))