diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-08-04 20:41:26 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-08-04 20:41:26 (GMT) |
commit | facbe5ba383639f5d58ac05aa30e15f9042ae95e (patch) | |
tree | 852d052cfc36307fe1b40ba3134ef1585807bc86 /tools/h5tools.h | |
parent | 47515ad49c7abc974f0757fd38004cf955e8e00b (diff) | |
download | hdf5-facbe5ba383639f5d58ac05aa30e15f9042ae95e.zip hdf5-facbe5ba383639f5d58ac05aa30e15f9042ae95e.tar.gz hdf5-facbe5ba383639f5d58ac05aa30e15f9042ae95e.tar.bz2 |
[svn-r2460] Fixed some comparisons between signed and unsigned values. Made some of
the functions prototypes so that the compiler wouldn't complain about
them.
Diffstat (limited to 'tools/h5tools.h')
-rw-r--r-- | tools/h5tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5tools.h b/tools/h5tools.h index bd28065..51256c4 100644 --- a/tools/h5tools.h +++ b/tools/h5tools.h @@ -374,7 +374,7 @@ obj_t *objs; typedef struct find_objs_t { int prefix_len; char *prefix; - int threshold; /* should be 0 or 1 */ + unsigned int threshold; /* should be 0 or 1 */ table_t *group_table; table_t *type_table; table_t *dset_table; |