Skip to content

Commit 21831c9

Browse files
authored
Merge pull request #1076 from bnicolae/main
Strictness fix for new compilers
2 parents e28f746 + f6588f8 commit 21831c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

darshan-runtime/lib/darshan-core.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2409,8 +2409,8 @@ static void darshan_core_reduce_max_time(void* in_time_v, void* inout_time_v,
24092409
/* crude benchmarking hook into darshan-core to benchmark Darshan
24102410
* shutdown overhead using a variety of application I/O workloads
24112411
*/
2412-
extern void darshan_posix_shutdown_bench_setup();
2413-
extern void darshan_mpiio_shutdown_bench_setup();
2412+
extern void darshan_posix_shutdown_bench_setup(int);
2413+
extern void darshan_mpiio_shutdown_bench_setup(int);
24142414
#ifdef HAVE_MPI
24152415
void darshan_shutdown_bench(int argc, char **argv)
24162416
{

0 commit comments

Comments
 (0)