summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-10-07 22:09:37 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-10-07 22:09:37 (GMT)
commitb879321f2491cc548f11d7d298f6a6f1b3ed27d6 (patch)
tree956f0115060e6e4c8ee57b4631f545e0107c7ffa /src
parent1dfe8d3e8150b476588e529b90b4f5749dcc8c48 (diff)
downloadhdf5-b879321f2491cc548f11d7d298f6a6f1b3ed27d6.zip
hdf5-b879321f2491cc548f11d7d298f6a6f1b3ed27d6.tar.gz
hdf5-b879321f2491cc548f11d7d298f6a6f1b3ed27d6.tar.bz2
[svn-r19541] Description:
Correct assert statement to acount for pinned entries. Tested: Linux/64 2.6 (chicago) (too peculiar to Chicago setup h5committest)
Diffstat (limited to 'src')
-rw-r--r--src/H5C.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5C.c b/src/H5C.c
index de45d20..5b7984b 100644
--- a/src/H5C.c
+++ b/src/H5C.c
@@ -8713,7 +8713,7 @@ H5C_make_space_in_cache(H5F_t * f,
#endif /* H5C_COLLECT_CACHE_STATS */
HDassert( ( entries_examined > (2 * initial_list_len) ) ||
- ( (cache_ptr->pl_size + cache_ptr->min_clean_size) >
+ ( (cache_ptr->pl_size + cache_ptr->pel_size + cache_ptr->min_clean_size) >
cache_ptr->max_cache_size ) ||
( ( cache_ptr->clean_index_size + empty_space )
>= cache_ptr->min_clean_size ) );