From c0ca09a89965e49df0cf1a1b11f955a7d1510a0f Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Tue, 2 Apr 2002 22:17:23 -0500 Subject: [svn-r5134] Purpose: Fix typo... Description: Fix typo in last H5S_find() checkin... Platforms tested: IRIX64 6.5 (modi4) --- src/H5S.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/H5S.c b/src/H5S.c index 16ff07d..20241a8 100644 --- a/src/H5S.c +++ b/src/H5S.c @@ -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 */ -- cgit v0.12