diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-13 17:03:59 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-13 17:03:59 (GMT) |
commit | 6c603f3e77454df4f3dc24e0ca1327d9017bbf67 (patch) | |
tree | fc6d2068753e3ee98da47e0b173e2f256a11afd2 /test | |
parent | 8ea1fc564f3686d14f30ccf00a0d7079473d3830 (diff) | |
download | hdf5-6c603f3e77454df4f3dc24e0ca1327d9017bbf67.zip hdf5-6c603f3e77454df4f3dc24e0ca1327d9017bbf67.tar.gz hdf5-6c603f3e77454df4f3dc24e0ca1327d9017bbf67.tar.bz2 |
[svn-r2875] Purpose:
Code cleanup
Description:
Eliminated some warnings on O2K platform.
Platforms tested:
SGI O2K (modi4)
Diffstat (limited to 'test')
-rw-r--r-- | test/h5test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h5test.c b/test/h5test.c index 98e4aec..bfd18df 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -378,7 +378,7 @@ h5_fileaccess(void) if ((val = strtok(NULL, " \t\n\r"))) verbosity = strtol(val, NULL, 0); - if (H5Pset_fapl_log(fapl, NULL, verbosity) < 0) + if (H5Pset_fapl_log(fapl, NULL, (int)verbosity) < 0) return -1; } else { /* Unknown driver */ |