summaryrefslogtreecommitdiffstats
path: root/test/flush1.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-03-30 19:35:30 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-03-30 19:35:30 (GMT)
commitdd3768ee25e4db04301f26f699f731ea8f5291fa (patch)
treec292946c8bc6352db1d1bce2a721ac19e8cd2e32 /test/flush1.c
parent189edf82048c2ef3769104d812864229af2adcc6 (diff)
downloadhdf5-dd3768ee25e4db04301f26f699f731ea8f5291fa.zip
hdf5-dd3768ee25e4db04301f26f699f731ea8f5291fa.tar.gz
hdf5-dd3768ee25e4db04301f26f699f731ea8f5291fa.tar.bz2
[svn-r13571] Description:
Correct various array indices to use 'size_t' instead of 'hsize_t' to make the PGI compiler happy. Tested on: Linux/32 2.4 (kagiso) w/PGI C compiler
Diffstat (limited to 'test/flush1.c')
-rw-r--r--test/flush1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/flush1.c b/test/flush1.c
index 43ebef7..98673ba 100644
--- a/test/flush1.c
+++ b/test/flush1.c
@@ -55,7 +55,7 @@ main(void)
hid_t fapl, file, dcpl, space, dset, groups, grp;
hsize_t ds_size[2] = {100, 100};
hsize_t ch_size[2] = {5, 5};
- hsize_t i, j;
+ size_t i, j;
char name[1024];
h5_reset();