diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-07 20:19:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-07 20:19:41 (GMT) |
commit | e87cb9148356b581d8ff8a910ea3acc9d549ee7a (patch) | |
tree | b4a8910040dccd553a23fe831b4f5f1e1798071e /test/unlink.c | |
parent | 53357538de48331d44345e8b91020c84fc144e9c (diff) | |
download | hdf5-e87cb9148356b581d8ff8a910ea3acc9d549ee7a.zip hdf5-e87cb9148356b581d8ff8a910ea3acc9d549ee7a.tar.gz hdf5-e87cb9148356b581d8ff8a910ea3acc9d549ee7a.tar.bz2 |
[svn-r12877] Description:
Clean up more compiler warnings.
Tested on:
Linux/64 2.6 (chicago2)
Diffstat (limited to 'test/unlink.c')
-rw-r--r-- | test/unlink.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/unlink.c b/test/unlink.c index edb6b6c..1045960 100644 --- a/test/unlink.c +++ b/test/unlink.c @@ -511,8 +511,8 @@ test_filespace(hid_t fapl) hsize_t attr_dims[FILESPACE_ATTR_NDIMS]= {FILESPACE_ATTR_DIM0, FILESPACE_ATTR_DIM1}; /* Attribute dimensions */ int *data = NULL; /* Pointer to dataset buffer */ int *tmp_data; /* Temporary pointer to dataset buffer */ - off_t empty_size; /* Size of an empty file */ - off_t file_size; /* Size of each file created */ + h5_stat_size_t empty_size; /* Size of an empty file */ + h5_stat_size_t file_size; /* Size of each file created */ herr_t status; /* Function status return value */ unsigned u,v,w; /* Local index variables */ @@ -2095,8 +2095,8 @@ test_full_group_compact(hid_t fapl) char objname[128]; /* Buffer for name of objects to create */ char objname2[128]; /* Buffer for name of objects to create */ char filename[1024]; /* Buffer for filename */ - off_t keep_size; /* Size of the file with objects to keep */ - off_t file_size; /* Size of each file created */ + h5_stat_size_t keep_size; /* Size of the file with objects to keep */ + h5_stat_size_t file_size; /* Size of each file created */ unsigned u; /* Local index variable */ TESTING("unlinking non-empty compact group"); @@ -2229,8 +2229,8 @@ test_full_group_dense(hid_t fapl) char objname[128]; /* Buffer for name of objects to create */ char objname2[128]; /* Buffer for name of objects to create */ char filename[1024]; /* Buffer for filename */ - off_t keep_size; /* Size of the file with objects to keep */ - off_t file_size; /* Size of each file created */ + h5_stat_size_t keep_size; /* Size of the file with objects to keep */ + h5_stat_size_t file_size; /* Size of each file created */ unsigned u; /* Local index variable */ TESTING("unlinking non-empty dense group"); |