diff options
Diffstat (limited to 'src/H5FDmpio.c')
-rw-r--r-- | src/H5FDmpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDmpio.c b/src/H5FDmpio.c index e296094..f639182 100644 --- a/src/H5FDmpio.c +++ b/src/H5FDmpio.c @@ -609,7 +609,7 @@ H5Pset_dxpl_mpio_chunk_opt_num(hid_t dxpl_id, unsigned num_chunk_per_proc) herr_t ret_value; FUNC_ENTER_API(H5Pset_dxpl_mpio_chunk_opt_num, FAIL) -/* H5TRACE2("e","iDt",dxpl_id,xfer_mode);*/ + H5TRACE2("e","iIu",dxpl_id,num_chunk_per_proc); if(dxpl_id==H5P_DEFAULT) HGOTO_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "can't set values in default property list") @@ -656,7 +656,7 @@ H5Pset_dxpl_mpio_chunk_opt_ratio(hid_t dxpl_id, unsigned percent_num_proc_per_ch herr_t ret_value; FUNC_ENTER_API(H5Pset_dxpl_mpio_chunk_opt_ratio, FAIL) -/* H5TRACE2("e","iDt",dxpl_id,xfer_mode);*/ + H5TRACE2("e","iIu",dxpl_id,percent_num_proc_per_chunk); if(dxpl_id==H5P_DEFAULT) HGOTO_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "can't set values in default property list") |