mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r9413] Purpose:
Code cleanup Description: Fix a couple of return values from NULL -> FAIL. Platforms tested: FreeBSD 4.10 (sleipnir) Too minor to require h5committest
This commit is contained in:
parent
e74b160268
commit
f102816b0f
@ -3296,12 +3296,12 @@ H5D_ioinfo_init(H5D_t *dset, const H5D_dxpl_cache_t *dxpl_cache, hid_t dxpl_id,
|
||||
*/
|
||||
opt=H5D_mpio_opt_possible(dset,mem_space,file_space,flags);
|
||||
if(opt==FAIL)
|
||||
HGOTO_ERROR(H5E_DATASPACE, H5E_BADRANGE, NULL, "invalid check for direct IO dataspace ");
|
||||
HGOTO_ERROR(H5E_DATASPACE, H5E_BADRANGE, FAIL, "invalid check for direct IO dataspace ");
|
||||
|
||||
opt = H5D_get_collective_io_consensus(dset->ent.file, opt, flags);
|
||||
|
||||
if ( opt == FAIL )
|
||||
HGOTO_ERROR(H5E_DATASPACE, H5E_BADRANGE, NULL, \
|
||||
HGOTO_ERROR(H5E_DATASPACE, H5E_BADRANGE, FAIL, \
|
||||
"check for collective I/O consensus failed.");
|
||||
|
||||
/* Check if we can use the optimized parallel I/O routines */
|
||||
|
Loading…
x
Reference in New Issue
Block a user