diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-03-30 15:12:49 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-03-30 15:12:49 (GMT) |
commit | 01093ad350365e1a29f1726c4ff8c72f1d4d739a (patch) | |
tree | 3bbf175988e76609bb804b0099207a041465b92c /test/gen_filespace.c | |
parent | bf7c3fb6708a2f77bd333b20a5167b9eead392a9 (diff) | |
download | hdf5-01093ad350365e1a29f1726c4ff8c72f1d4d739a.zip hdf5-01093ad350365e1a29f1726c4ff8c72f1d4d739a.tar.gz hdf5-01093ad350365e1a29f1726c4ff8c72f1d4d739a.tar.bz2 |
[svn-r26649] squish warnings.
Diffstat (limited to 'test/gen_filespace.c')
-rw-r--r-- | test/gen_filespace.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/gen_filespace.c b/test/gen_filespace.c index 7ee2a7a..e0c42e8 100644 --- a/test/gen_filespace.c +++ b/test/gen_filespace.c @@ -42,7 +42,8 @@ static void gen_file(void) hid_t dataset, space; hsize_t dim[1]; int data[NUM_ELMTS]; - unsigned i, j; /* Local index variable */ + size_t j; /* Local index variable */ + int i; /* Local index variable */ H5F_file_space_type_t fs_type; /* File space handling strategy */ for(j = 0, fs_type = H5F_FILE_SPACE_ALL_PERSIST; j < NELMTS(FILENAMES); j++, fs_type = (H5F_file_space_type_t)(fs_type + 1)) { |