summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2008-05-19 04:34:02 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2008-05-19 04:34:02 (GMT)
commit2adc43f81221954e16da3338445323f1e4d958ad (patch)
tree351ed14f7469382748a18237512c41def64233bb /test
parent12c5e315c5090f32e0683b588ab3b8a2327da948 (diff)
downloadhdf5-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')
-rw-r--r--test/dsets.c4
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;