From df6f2c372602981398151cd939c214a1f269178c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 23 Aug 2023 10:46:33 -0400 Subject: Fix build with GCC 13 --- tests/ingen_bench.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/ingen_bench.cpp b/tests/ingen_bench.cpp index d840eea9..82fae78d 100644 --- a/tests/ingen_bench.cpp +++ b/tests/ingen_bench.cpp @@ -127,8 +127,8 @@ run(int argc, char** argv) const uint64_t t_end = clock.now_microseconds(); // Write log output - const std::unique_ptr log{fopen(out_file.c_str(), "a"), - &fclose}; + const std::unique_ptr log{fopen(out_file.c_str(), "a"), + &fclose}; if (ftell(log.get()) == 0) { fprintf(log.get(), "# n_threads\trun_time\treal_time\n"); } -- cgit v1.2.1