summaryrefslogtreecommitdiffstats
path: root/src/H5FDdirect.c
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2006-10-20 18:10:53 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2006-10-20 18:10:53 (GMT)
commit14c697f7e4bd9548eddbe64b17930e69817f98cd (patch)
tree0f65efd7f4a1e1553f8058fd1e41a045e5ea3586 /src/H5FDdirect.c
parentdb3c44c6d677b71af2b78caab71347573bd26a0b (diff)
downloadhdf5-14c697f7e4bd9548eddbe64b17930e69817f98cd.zip
hdf5-14c697f7e4bd9548eddbe64b17930e69817f98cd.tar.gz
hdf5-14c697f7e4bd9548eddbe64b17930e69817f98cd.tar.bz2
[svn-r12792] Fixed a Makefile.am to clean up a test file generated by the Packet Table
compression test. Tested that the file is removed on juniper and heping. Running reconfigure also regenerated the H5E* files (I think this means somebody updated these files but didn't run reconfigure).
Diffstat (limited to 'src/H5FDdirect.c')
-rw-r--r--src/H5FDdirect.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c
index 0f95f7fb..93a64f5 100644
--- a/src/H5FDdirect.c
+++ b/src/H5FDdirect.c
@@ -313,7 +313,7 @@ H5Pset_fapl_direct(hid_t fapl_id, hsize_t boundary, hsize_t block_size, hsize_t
herr_t ret_value;
FUNC_ENTER_API(H5Pset_fapl_direct, FAIL)
- H5TRACE1("e","i",fapl_id);
+ H5TRACE4("e","ihhh",fapl_id,boundary,block_size,cbuf_size);
if(NULL == (plist = H5P_object_verify(fapl_id,H5P_FILE_ACCESS)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list")
@@ -368,6 +368,7 @@ H5Pget_fapl_direct(hid_t fapl_id, hsize_t *boundary/*out*/, hsize_t *block_size/
herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_API(H5Pget_fapl_direct, FAIL)
+ H5TRACE4("e","ixxx",fapl_id,boundary,block_size,cbuf_size);
if(NULL == (plist = H5P_object_verify(fapl_id,H5P_FILE_ACCESS)))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access list")