diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-03 03:17:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-03 03:17:23 (GMT) |
commit | c0ca09a89965e49df0cf1a1b11f955a7d1510a0f (patch) | |
tree | 01890b06ad69fd4d8fd7daa1465f0ad215cad6a5 | |
parent | 89cee5529a94725e5f1e7b769719100f111f8ccd (diff) | |
download | hdf5-c0ca09a89965e49df0cf1a1b11f955a7d1510a0f.zip hdf5-c0ca09a89965e49df0cf1a1b11f955a7d1510a0f.tar.gz hdf5-c0ca09a89965e49df0cf1a1b11f955a7d1510a0f.tar.bz2 |
[svn-r5134] Purpose:
Fix typo...
Description:
Fix typo in last H5S_find() checkin...
Platforms tested:
IRIX64 6.5 (modi4)
-rw-r--r-- | src/H5S.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1582,16 +1582,16 @@ H5S_find (const H5S_t *mem_space, const H5S_t *file_space, unsigned flags) if (c1==TRUE && c2==TRUE) { #ifdef H5_HAVE_PARALLEL if(flags&H5S_CONV_PAR_IO_POSSIBLE) { - H5S_conv_g[i]->read = H5S_mpio_spaces_read; - H5S_conv_g[i]->write = H5S_mpio_spaces_write; + path->read = H5S_mpio_spaces_read; + path->write = H5S_mpio_spaces_write; } /* end if */ else { - H5S_conv_g[i]->read = H5S_all_read; - H5S_conv_g[i]->write = H5S_all_write; + path->read = H5S_all_read; + path->write = H5S_all_write; } /* end else */ #else /* H5_HAVE_PARALLEL */ - H5S_conv_g[i]->read = H5S_all_read; - H5S_conv_g[i]->write = H5S_all_write; + path->read = H5S_all_read; + path->write = H5S_all_write; #endif /* H5_HAVE_PARALLEL */ } /* end if */ |