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/H5Dio.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/H5Dio.c')
-rw-r--r-- | src/H5Dio.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c index 9fb860e..b7d9580 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -757,7 +757,7 @@ H5D_read(H5D_t *dataset, hid_t mem_type_id, const H5S_t *mem_space, } /* end switch */ /* Get dataspace functions */ - if (NULL==(sconv=H5S_find(dataset->ent.file,mem_space, file_space, sconv_flags, &use_par_opt_io,&dataset->layout))) + if (NULL==(sconv=H5S_find(dataset->ent.file, mem_space, file_space, sconv_flags, &use_par_opt_io, &dataset->layout))) HGOTO_ERROR (H5E_DATASET, H5E_UNSUPPORTED, FAIL, "unable to convert from file to memory data space") #ifdef H5_HAVE_PARALLEL @@ -1004,7 +1004,7 @@ H5D_write(H5D_t *dataset, hid_t mem_type_id, const H5S_t *mem_space, } /* end switch */ /* Get dataspace functions */ - if (NULL==(sconv=H5S_find(dataset->ent.file,mem_space, file_space, sconv_flags, &use_par_opt_io,&dataset->layout))) + if (NULL==(sconv=H5S_find(dataset->ent.file, mem_space, file_space, sconv_flags, &use_par_opt_io, &dataset->layout))) HGOTO_ERROR (H5E_DATASET, H5E_UNSUPPORTED, FAIL, "unable to convert from memory to file data space") #ifdef H5_HAVE_PARALLEL @@ -1031,7 +1031,6 @@ H5D_write(H5D_t *dataset, hid_t mem_type_id, const H5S_t *mem_space, } #endif /* H5_HAVE_INSTRUMENTED_LIBRARY */ - /* end Test for collective chunk IO */ /* Don't reset the transfer mode if we can't or won't use it */ if(!use_par_opt_io || !H5T_path_noop(tpath)) H5D_io_assist_mpio(dxpl_id, dxpl_cache, &xfer_mode_changed); |