From 74a71ddef8a59bb4af177503a66e3403fa5fb7d5 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 19 Mar 2026 08:33:48 +0200 Subject: fix: align replay stats constructor signature (task 472) --- ioriot/src/replay/rstats.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ioriot/src/replay/rstats.c b/ioriot/src/replay/rstats.c index 6def990..84ea767 100644 --- a/ioriot/src/replay/rstats.c +++ b/ioriot/src/replay/rstats.c @@ -42,7 +42,7 @@ void rstats_destroy(rstats_s *s) free(s); } -rworker_stats_s* rworker_stats_new_mmap(options_s *opts) +rworker_stats_s* rworker_stats_new_mmap() { // Share this object between processes, so that the stats cann be // collected by the master process! @@ -105,4 +105,3 @@ void rstats_print(rstats_s* s) fprintf(s->stats_fd, "\tTime ahead: %lds\n", s->time_ahead/1000); fprintf(s->stats_fd, "\tTotal time: %.2fs\n", s->duration); } - -- cgit v1.2.3