summaryrefslogtreecommitdiffstats
path: root/test/dsets.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2008-05-19 04:47:38 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2008-05-19 04:47:38 (GMT)
commit90b94c00fecc7f9ce603d868d4adfa5bc5a05831 (patch)
tree905c88b48827bc7c7a1cd56ccfbc5bdf6572b267 /test/dsets.c
parentfeab08a0eeb4ac38c38b12fc0f43a15540d22cee (diff)
downloadhdf5-90b94c00fecc7f9ce603d868d4adfa5bc5a05831.zip
hdf5-90b94c00fecc7f9ce603d868d4adfa5bc5a05831.tar.gz
hdf5-90b94c00fecc7f9ce603d868d4adfa5bc5a05831.tar.bz2
[svn-r15035] Description:
Backport revision 15034 from trunk: 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.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;