diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-08-10 13:26:14 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-08-10 13:26:14 (GMT) |
commit | e5a5aed0cd6e30c41643cc540630937eddea396a (patch) | |
tree | 2cd89d6d8c0a651126739671209f5916259cf188 | |
parent | 9d208e402de469e578b33b5f09a1ec42301ae6b7 (diff) | |
download | hdf5-e5a5aed0cd6e30c41643cc540630937eddea396a.zip hdf5-e5a5aed0cd6e30c41643cc540630937eddea396a.tar.gz hdf5-e5a5aed0cd6e30c41643cc540630937eddea396a.tar.bz2 |
[svn-r19208] Description:
Switch from using "UINT16_MAX" to "64 * 1024" for assert macro.
Tested on:
None, just eyeballed.
-rw-r--r-- | test/tselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tselect.c b/test/tselect.c index d96780f..cdfa6de 100644 --- a/test/tselect.c +++ b/test/tselect.c @@ -2795,7 +2795,7 @@ test_select_hyper_checker_board_dr__run_test(int test_num, const uint16_t *cube_ * hence the following assertion. Delete it if we convert * to 32 bit values. */ - HDassert(large_cube_size < (size_t)(UINT16_MAX)); + HDassert(large_cube_size < (size_t)(64 * 1024)); /* Allocate & initialize buffers */ |