diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-01-09 18:40:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-01-09 18:40:19 (GMT) |
commit | 98f01e2df2b407bfae2cd24fe4f03e184712eb75 (patch) | |
tree | f1981909055143f84c94799354d3d2a266c30c0f /src/H5Pdcpl.c | |
parent | 9a433b99a56dc575f1c0b11f95b744de61859dbb (diff) | |
download | hdf5-98f01e2df2b407bfae2cd24fe4f03e184712eb75.zip hdf5-98f01e2df2b407bfae2cd24fe4f03e184712eb75.tar.gz hdf5-98f01e2df2b407bfae2cd24fe4f03e184712eb75.tar.bz2 |
[svn-r6255] Purpose:
Code cleanup
Description:
Clean up a few more warnings and update dependencies.
Platforms tested:
Linux 2.2.18smp (eirene) serial & parallel
Diffstat (limited to 'src/H5Pdcpl.c')
-rw-r--r-- | src/H5Pdcpl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Pdcpl.c b/src/H5Pdcpl.c index 92ebfc2..2e2b883 100644 --- a/src/H5Pdcpl.c +++ b/src/H5Pdcpl.c @@ -1087,7 +1087,7 @@ H5Pfill_value_defined(hid_t plist_id, H5D_fill_value_t *status) herr_t ret_value = SUCCEED; FUNC_ENTER_API(H5Pfill_value_defined, FAIL); - H5TRACE2("e","i*Df",plist_id,status); + H5TRACE2("e","i*DF",plist_id,status); assert(status); @@ -1128,7 +1128,7 @@ H5Pset_alloc_time(hid_t plist_id, H5D_alloc_time_t alloc_time) herr_t ret_value = SUCCEED; /* return value */ FUNC_ENTER_API(H5Pset_alloc_time, FAIL); - H5TRACE2("e","iDs",plist_id,alloc_time); + H5TRACE2("e","iDa",plist_id,alloc_time); /* Get the property list structure */ if(NULL == (plist = H5P_object_verify(plist_id,H5P_DATASET_CREATE))) @@ -1205,6 +1205,7 @@ H5Pset_fill_time(hid_t plist_id, H5D_fill_time_t fill_time) herr_t ret_value = SUCCEED; /* return value */ FUNC_ENTER_API(H5Pset_fill_time, FAIL); + H5TRACE2("e","iDf",plist_id,fill_time); /* Get the property list structure */ if(NULL == (plist = H5P_object_verify(plist_id,H5P_DATASET_CREATE))) |