summaryrefslogtreecommitdiffstats
path: root/testpar/t_file.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2022-04-05 16:02:12 (GMT)
committerGitHub <noreply@github.com>2022-04-05 16:02:12 (GMT)
commit9f2b38bb61df6136d214cb7ab248f73d1ff9458c (patch)
tree703b1eec9eee535667b8753916b3714815f8f810 /testpar/t_file.c
parentbddd148fd29deb18439767c416199914845431b8 (diff)
downloadhdf5-9f2b38bb61df6136d214cb7ab248f73d1ff9458c.zip
hdf5-9f2b38bb61df6136d214cb7ab248f73d1ff9458c.tar.gz
hdf5-9f2b38bb61df6136d214cb7ab248f73d1ff9458c.tar.bz2
Clang warning fixes from develop. (#1583)
Diffstat (limited to 'testpar/t_file.c')
-rw-r--r--testpar/t_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_file.c b/testpar/t_file.c
index a3be81d..52cae6d 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), ""); */
}
}