diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2022-04-05 16:02:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 16:02:12 (GMT) |
commit | 9f2b38bb61df6136d214cb7ab248f73d1ff9458c (patch) | |
tree | 703b1eec9eee535667b8753916b3714815f8f810 /tools | |
parent | bddd148fd29deb18439767c416199914845431b8 (diff) | |
download | hdf5-9f2b38bb61df6136d214cb7ab248f73d1ff9458c.zip hdf5-9f2b38bb61df6136d214cb7ab248f73d1ff9458c.tar.gz hdf5-9f2b38bb61df6136d214cb7ab248f73d1ff9458c.tar.bz2 |
Clang warning fixes from develop. (#1583)
Diffstat (limited to 'tools')
-rw-r--r-- | tools/src/h5perf/perf.c | 2 | ||||
-rw-r--r-- | tools/src/h5perf/pio_engine.c | 8 | ||||
-rw-r--r-- | tools/src/h5perf/pio_perf.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/tools/src/h5perf/perf.c b/tools/src/h5perf/perf.c index e8c03d8..48f76f2 100644 --- a/tools/src/h5perf/perf.c +++ b/tools/src/h5perf/perf.c @@ -126,7 +126,7 @@ static char *h5_fixname_real(const char *base_name, hid_t fapl, const char *_suf int main(int argc, char **argv) { - char * buf, *tmp, *buf2 = NULL, *tmp2 = NULL, *check; + char * buf = NULL, *tmp = NULL, *buf2 = NULL, *tmp2 = NULL, *check = NULL; int i, j, mynod = 0, nprocs = 1, my_correct = 1, correct, myerrno; double stim, etim; double write_tim = 0; diff --git a/tools/src/h5perf/pio_engine.c b/tools/src/h5perf/pio_engine.c index 4eaa284..e35f86e 100644 --- a/tools/src/h5perf/pio_engine.c +++ b/tools/src/h5perf/pio_engine.c @@ -1185,7 +1185,7 @@ do_write(results *res, file_descr *fd, parameters *parms, long ndsets, off_t nby /* Set the file view */ mrc = MPI_File_set_view(fd->mpifd, mpi_offset, mpi_blk_type, mpi_file_type, - (char *)"native", h5_io_info_g); + "native", h5_io_info_g); VRFY((mrc == MPI_SUCCESS), "MPIO_VIEW"); /* Perform write */ @@ -1322,7 +1322,7 @@ do_write(results *res, file_descr *fd, parameters *parms, long ndsets, off_t nby else { /* Set the file view */ mrc = MPI_File_set_view(fd->mpifd, mpi_offset, MPI_BYTE, mpi_collective_type, - (char *)"native", h5_io_info_g); + "native", h5_io_info_g); VRFY((mrc == MPI_SUCCESS), "MPIO_VIEW"); /* Perform write */ @@ -2156,7 +2156,7 @@ do_read(results *res, file_descr *fd, parameters *parms, long ndsets, off_t nbyt /* Set the file view */ mrc = MPI_File_set_view(fd->mpifd, mpi_offset, mpi_blk_type, mpi_file_type, - (char *)"native", h5_io_info_g); + "native", h5_io_info_g); VRFY((mrc == MPI_SUCCESS), "MPIO_VIEW"); /* Perform collective read */ @@ -2293,7 +2293,7 @@ do_read(results *res, file_descr *fd, parameters *parms, long ndsets, off_t nbyt else { /* Set the file view */ mrc = MPI_File_set_view(fd->mpifd, mpi_offset, MPI_BYTE, mpi_collective_type, - (char *)"native", h5_io_info_g); + "native", h5_io_info_g); VRFY((mrc == MPI_SUCCESS), "MPIO_VIEW"); /* Perform read */ diff --git a/tools/src/h5perf/pio_perf.c b/tools/src/h5perf/pio_perf.c index 01165bb..948eec5 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; |