diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-14 15:46:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-14 15:46:38 (GMT) |
commit | e2518919c959dbf1bdb0890151cae91293e0594d (patch) | |
tree | 8a436ae57a310fdce030f1d15ec6084724524785 /src/H5F.c | |
parent | a34ed1f634081df2e6b8e7295eac73d3e31e7346 (diff) | |
download | hdf5-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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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))) |