diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-12 13:58:39 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-12 13:58:39 (GMT) |
commit | 9eeffcb45ea1b6986acc9c002c7cb36d2e6775f6 (patch) | |
tree | e9ccc9dce36eab2315202a74dc733e599e83eff5 /src | |
parent | 3a0f7b3bbafd7bcf7a27ed38266b018f4d841a96 (diff) | |
download | hdf5-9eeffcb45ea1b6986acc9c002c7cb36d2e6775f6.zip hdf5-9eeffcb45ea1b6986acc9c002c7cb36d2e6775f6.tar.gz hdf5-9eeffcb45ea1b6986acc9c002c7cb36d2e6775f6.tar.bz2 |
[svn-r18547] Description:
Tweak assert statement to attempt to pacify RSQ compiler.
Tested on:
None, too minor - just eyeballed.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5B2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -654,7 +654,7 @@ H5B2_index(H5B2_t *bt2, hid_t dxpl_id, H5_iter_order_t order, hsize_t idx, } /* end if */ else /* Index that is greater than the number of records in the tree? */ - HDassert("Index off end of tree??" && 0); + HDassert(0 && "Index off end of tree??"); } /* end if */ /* Decrement depth we're at in B-tree */ |