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/stab.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/stab.c')
-rw-r--r-- | test/stab.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/stab.c b/test/stab.c index dcb3f3a..e23a5f4 100644 --- a/test/stab.c +++ b/test/stab.c @@ -329,9 +329,9 @@ lifecycle(hid_t fapl) H5G_stat_t obj_stat; /* Object info */ char objname[NAME_BUF_SIZE]; /* Object name */ char filename[NAME_BUF_SIZE]; - off_t empty_size; /* Size of an empty file */ + h5_stat_size_t empty_size; /* Size of an empty file */ unsigned u; /* Local index variable */ - off_t file_size; /* Size of each file created */ + h5_stat_size_t file_size; /* Size of each file created */ TESTING("group lifecycle"); @@ -555,8 +555,8 @@ long_compact(hid_t fapl) hid_t fapl2 = (-1); /* File access property list ID */ char *objname; /* Object name */ char filename[NAME_BUF_SIZE]; - 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 */ TESTING("long link names in compact groups"); @@ -811,8 +811,8 @@ no_compact(hid_t fapl) hid_t fapl2 = (-1); /* File access property list ID */ char objname[NAME_BUF_SIZE]; /* Object name */ char filename[NAME_BUF_SIZE]; - 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 */ unsigned est_num_entries; /* Estimated # of entries in group */ unsigned est_name_len; /* Estimated length of entry name */ |