diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2021-12-15 22:22:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 22:22:04 (GMT) |
commit | db61a888e65427351e3d07bda80f163c08f13cbb (patch) | |
tree | 1f2764f8825976675b83d10eaf700694347bc086 /tools | |
parent | c60bc0a07c697d35db2d19c7b0625e165f20824f (diff) | |
download | hdf5-db61a888e65427351e3d07bda80f163c08f13cbb.zip hdf5-db61a888e65427351e3d07bda80f163c08f13cbb.tar.gz hdf5-db61a888e65427351e3d07bda80f163c08f13cbb.tar.bz2 |
OESS-168: Remove clang warnings. (#1295)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/src/h5perf/pio_perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/src/h5perf/pio_perf.c b/tools/src/h5perf/pio_perf.c index 6478fe7..bf5f62f 100644 --- a/tools/src/h5perf/pio_perf.c +++ b/tools/src/h5perf/pio_perf.c @@ -904,7 +904,7 @@ accumulate_minmax_stuff(minmax *mm, int count) int i; minmax total_mm; - total_mm.sum = 0.0f; + total_mm.sum = 0.0; total_mm.max = -DBL_MAX; total_mm.min = DBL_MAX; total_mm.num = count; |