summaryrefslogtreecommitdiffstats
path: root/src/H5Oefl.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-05-08 13:06:15 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-05-08 13:06:15 (GMT)
commit55dbd8d92a0d2d1dd9c56eef89d9e1981dddde22 (patch)
tree67a8aa005b41661dee18ade6de46c4a00d61a5ec /src/H5Oefl.c
parentae1be622b9f8f6fda89c014dd6f69b1b09596467 (diff)
downloadhdf5-55dbd8d92a0d2d1dd9c56eef89d9e1981dddde22.zip
hdf5-55dbd8d92a0d2d1dd9c56eef89d9e1981dddde22.tar.gz
hdf5-55dbd8d92a0d2d1dd9c56eef89d9e1981dddde22.tar.bz2
[svn-r6831] Purpose:
Bug fix Description: New external file double-vectorized I/O routines were checking an assertion on the wrong variable (essentially a typo :-). Solution: Check correct variable. Platforms tested: FreeBSD 4.8 (sleipnir) Triple check not needed.
Diffstat (limited to 'src/H5Oefl.c')
-rw-r--r--src/H5Oefl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Oefl.c b/src/H5Oefl.c
index 3c80f95..c9369e5 100644
--- a/src/H5Oefl.c
+++ b/src/H5Oefl.c
@@ -617,7 +617,7 @@ H5O_efl_readvv(const H5O_efl_t *efl,
/* Check args */
assert (efl && efl->nused>0);
- assert (buf);
+ assert (_buf);
/* Work through all the sequences */
for(u=*dset_curr_seq, v=*mem_curr_seq; u<dset_max_nseq && v<mem_max_nseq; ) {
@@ -696,7 +696,7 @@ H5O_efl_writevv(const H5O_efl_t *efl,
/* Check args */
assert (efl && efl->nused>0);
- assert (buf);
+ assert (_buf);
/* Work through all the sequences */
for(u=*dset_curr_seq, v=*mem_curr_seq; u<dset_max_nseq && v<mem_max_nseq; ) {