summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-07-24 19:09:55 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-07-24 19:09:55 (GMT)
commit618438995d0e0baac1851d3ee6be461e3e89e5a8 (patch)
treec00832c36465508129176b5333ac77e8de763984 /src
parent40df66ebd027351e48eea8b7499490c9654d3943 (diff)
downloadhdf5-618438995d0e0baac1851d3ee6be461e3e89e5a8.zip
hdf5-618438995d0e0baac1851d3ee6be461e3e89e5a8.tar.gz
hdf5-618438995d0e0baac1851d3ee6be461e3e89e5a8.tar.bz2
[svn-r5835] Purpose:
Bug fix. Description: Correct erroneous assertion. Platforms tested: IRIX64 6.5 (modi4) w/parallel
Diffstat (limited to 'src')
-rw-r--r--src/H5Sselect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c
index 7c239bb..705eefb 100644
--- a/src/H5Sselect.c
+++ b/src/H5Sselect.c
@@ -1753,7 +1753,7 @@ H5S_select_fill(void *_fill, size_t fill_size, const H5S_t *space, void *_buf)
/* Check args */
assert(fill_size>0);
assert(space);
- assert(buf);
+ assert(_buf);
/* Check if we need a temporary fill value buffer */
if(fill==NULL) {