diff options
author | H. Joe Lee <hyoklee@hdfgroup.org> | 2021-12-10 22:01:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 22:01:25 (GMT) |
commit | b54c738822d678286ef50fad49224ae9a1f0defd (patch) | |
tree | c08a6f55d7900cf2c2065da2e7af73536f75b613 | |
parent | 70e70002c36ae8fe9c2a040f90d0d2fc5d4d9aef (diff) | |
download | hdf5-b54c738822d678286ef50fad49224ae9a1f0defd.zip hdf5-b54c738822d678286ef50fad49224ae9a1f0defd.tar.gz hdf5-b54c738822d678286ef50fad49224ae9a1f0defd.tar.bz2 |
OESS-168: Remove clang warnings. (#1282)
* OESS-168: Remove clang warnings.
* OESS-168: Remove commented-out code.
* OESS-168: Address @gnuoyd review.
-rw-r--r-- | testpar/t_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_file.c b/testpar/t_file.c index c6b9e32..6c6ac69 100644 --- a/testpar/t_file.c +++ b/testpar/t_file.c @@ -106,7 +106,7 @@ test_split_comm_access(void) /* delete the test file */ if (sub_mpi_rank == 0) { - mrc = MPI_File_delete((char *)filename, info); + mrc = MPI_File_delete(filename, info); /*VRFY((mrc==MPI_SUCCESS), ""); */ } } |