diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-05-25 13:06:49 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-05-25 13:06:49 (GMT) |
commit | 65e2e8f87cc9b5235b19faefa23f76c2c6ea6da9 (patch) | |
tree | bea22a1ef615f8f110871162fb96dd9b1b93ce66 /test | |
parent | 18ae45027c40ecf539260216a04ba1cfdf8b50d9 (diff) | |
download | hdf5-65e2e8f87cc9b5235b19faefa23f76c2c6ea6da9.zip hdf5-65e2e8f87cc9b5235b19faefa23f76c2c6ea6da9.tar.gz hdf5-65e2e8f87cc9b5235b19faefa23f76c2c6ea6da9.tar.bz2 |
A few more warnings fixed.
Diffstat (limited to 'test')
-rw-r--r-- | test/tfile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tfile.c b/test/tfile.c index 7274c82..c59e756 100644 --- a/test/tfile.c +++ b/test/tfile.c @@ -4929,9 +4929,9 @@ test_libver_bounds(void) static void test_libver_macros(void) { - unsigned major = H5_VERS_MAJOR; - unsigned minor = H5_VERS_MINOR; - unsigned release = H5_VERS_RELEASE; + int major = H5_VERS_MAJOR; + int minor = H5_VERS_MINOR; + int release = H5_VERS_RELEASE; /* Output message about test being performed */ MESSAGE(5, ("Testing macros for library version comparison\n")); |