diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-30 19:35:30 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-30 19:35:30 (GMT) |
commit | dd3768ee25e4db04301f26f699f731ea8f5291fa (patch) | |
tree | c292946c8bc6352db1d1bce2a721ac19e8cd2e32 /test/istore.c | |
parent | 189edf82048c2ef3769104d812864229af2adcc6 (diff) | |
download | hdf5-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/istore.c')
-rw-r--r-- | test/istore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/istore.c b/test/istore.c index 5bbb2cf..8fd55bf 100644 --- a/test/istore.c +++ b/test/istore.c @@ -225,7 +225,7 @@ test_extend(hid_t f, const char *prefix, hid_t dataset; /* Dataset ID */ hid_t fspace; /* Dataset's file dataspace */ hid_t mspace; /* Dataset's memory dataspace */ - hsize_t i, j, k, ctr; + size_t i, j, k, ctr; int ndims; uint8_t *buf = NULL, *check = NULL, *whole = NULL; char dims[64], s[256], name[256]; |