diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-05-19 04:34:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-05-19 04:34:02 (GMT) |
commit | 2adc43f81221954e16da3338445323f1e4d958ad (patch) | |
tree | 351ed14f7469382748a18237512c41def64233bb /test/dsets.c | |
parent | 12c5e315c5090f32e0683b588ab3b8a2327da948 (diff) | |
download | hdf5-2adc43f81221954e16da3338445323f1e4d958ad.zip hdf5-2adc43f81221954e16da3338445323f1e4d958ad.tar.gz hdf5-2adc43f81221954e16da3338445323f1e4d958ad.tar.bz2 |
[svn-r15034] Description:
Correct another case of using 'size_t' for chunk sizes where 'uint32_t'
was necessary.
Tested on:
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN
Diffstat (limited to 'test/dsets.c')
-rw-r--r-- | test/dsets.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dsets.c b/test/dsets.c index 8edc2d2..d0b2098 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -2541,8 +2541,8 @@ test_nbit_int(hid_t file) { #ifdef H5_HAVE_FILTER_NBIT hid_t dataset, datatype, mem_datatype, space, dc; - const hsize_t size[2] = {2, 5}; - const hsize_t chunk_size[2] = {2,5}; + hsize_t size[2] = {2, 5}; + hsize_t chunk_size[2] = {2,5}; int orig_data[2][5]; int new_data[2][5]; unsigned int mask; |