summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-10-14 15:46:38 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-10-14 15:46:38 (GMT)
commite2518919c959dbf1bdb0890151cae91293e0594d (patch)
tree8a436ae57a310fdce030f1d15ec6084724524785 /src/H5F.c
parenta34ed1f634081df2e6b8e7295eac73d3e31e7346 (diff)
downloadhdf5-e2518919c959dbf1bdb0890151cae91293e0594d.zip
hdf5-e2518919c959dbf1bdb0890151cae91293e0594d.tar.gz
hdf5-e2518919c959dbf1bdb0890151cae91293e0594d.tar.bz2
[svn-r7626] Purpose:
Update dependencies and tracing information Platforms tested: Linux 2.4 (verbena) w/FORTRAN too minor for h5committest
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5F.c b/src/H5F.c
index 4148f62..66c9372 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -1244,12 +1244,13 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5Fget_vfd_handle(hid_t file_id, hid_t fapl, void** file_handle)
+H5Fget_vfd_handle(hid_t file_id, hid_t fapl, void **file_handle)
{
H5F_t *file=NULL;
herr_t ret_value;
FUNC_ENTER_API(H5Fget_vfd_handle, FAIL)
+ H5TRACE3("e","iix",file_id,fapl,file_handle);
/* Check args */
assert(file_handle);
@@ -4524,6 +4525,7 @@ H5Fget_freespace(hid_t file_id)
hssize_t ret_value; /* Return value */
FUNC_ENTER_API(H5Fget_freespace, FAIL)
+ H5TRACE1("Hs","i",file_id);
/* Check args */
if(NULL==(file=H5I_object_verify(file_id, H5I_FILE)))