diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-08-02 17:51:50 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-08-02 17:51:50 (GMT) |
commit | daa96590d313494fa24279e12727c2e9586025a1 (patch) | |
tree | df5b414dff0fbbf0d9615c3cc810f1b240f9f843 /src/H5Dmpio.c | |
parent | 084ed881372d1e5f04f6f3078ced33503d206392 (diff) | |
download | hdf5-daa96590d313494fa24279e12727c2e9586025a1.zip hdf5-daa96590d313494fa24279e12727c2e9586025a1.tar.gz hdf5-daa96590d313494fa24279e12727c2e9586025a1.tar.bz2 |
[svn-r8987] Purpose:
Code cleanup
Description:
Fix another batch of minor differences between the development and release
branches.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Too minor to require h5committest
Diffstat (limited to 'src/H5Dmpio.c')
-rw-r--r-- | src/H5Dmpio.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/H5Dmpio.c b/src/H5Dmpio.c index ea15076..581a20a 100644 --- a/src/H5Dmpio.c +++ b/src/H5Dmpio.c @@ -138,7 +138,7 @@ H5D_mpio_spaces_xfer(H5F_t *f, const H5D_t *dset, size_t elmt_size, &mft_is_derived )<0) HGOTO_ERROR(H5E_DATASPACE, H5E_BADTYPE, FAIL,"couldn't create MPI file type"); - + /* Get the base address of the contiguous dataset or the chunk */ if(dset->layout.type == H5D_CONTIGUOUS) addr = H5D_contig_get_addr(dset) + mpi_file_offset; else { @@ -222,7 +222,7 @@ H5D_mpio_spaces_read(H5F_t *f, const H5D_dxpl_cache_t UNUSED *dxpl_cache, hid_t FUNC_ENTER_NOAPI_NOFUNC(H5D_mpio_spaces_read); ret_value = H5D_mpio_spaces_xfer(f, dset, elmt_size, file_space, - mem_space, dxpl_id, buf,store, 0/*read*/); + mem_space, dxpl_id, buf, store, 0/*read*/); FUNC_LEAVE_NOAPI(ret_value); } /* end H5D_mpio_spaces_read() */ @@ -261,9 +261,8 @@ H5D_mpio_spaces_write(H5F_t *f, const H5D_dxpl_cache_t UNUSED *dxpl_cache, hid_t /*OKAY: CAST DISCARDS CONST QUALIFIER*/ ret_value = H5D_mpio_spaces_xfer(f, dset, elmt_size, file_space, - mem_space, dxpl_id, (void*)buf, store,1/*write*/); + mem_space, dxpl_id, (void*)buf, store, 1/*write*/); FUNC_LEAVE_NOAPI(ret_value); } /* end H5D_mpio_spaces_write() */ - #endif /* H5_HAVE_PARALLEL */ |