diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-03 17:37:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-03 17:37:02 (GMT) |
commit | 997e30d86a089f0224293edd6b77e6944a27c874 (patch) | |
tree | 2970ccb6566cadc3532064e66c51601b2ce6d138 /src/H5Smpio.c | |
parent | 7ae00db7a4a4e8330245b15aa1e2fa1659cb9b1b (diff) | |
download | hdf5-997e30d86a089f0224293edd6b77e6944a27c874.zip hdf5-997e30d86a089f0224293edd6b77e6944a27c874.tar.gz hdf5-997e30d86a089f0224293edd6b77e6944a27c874.tar.bz2 |
[svn-r5139] Purpose:
Code cleanup
Description:
Clean up a few warnings on the SGI.
Platforms tested:
IRIX64 6.5 (modi4)
Diffstat (limited to 'src/H5Smpio.c')
-rw-r--r-- | src/H5Smpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Smpio.c b/src/H5Smpio.c index 13293c3..6cfb4bc 100644 --- a/src/H5Smpio.c +++ b/src/H5Smpio.c @@ -807,7 +807,7 @@ H5S_mpio_opt_possible( const H5S_t *mem_space, const H5S_t *file_space, const un HGOTO_DONE(FALSE); /* Dataset storage must be contiguous currently */ - if ((sconv_flags&H5S_CONV_STORAGE_MASK)!=H5S_CONV_STORAGE_CONTIGUOUS) + if ((flags&H5S_CONV_STORAGE_MASK)!=H5S_CONV_STORAGE_CONTIGUOUS) HGOTO_DONE(FALSE); /* Parallel I/O conversion flag must be set */ |