summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-19 08:33:48 +0200
committerPaul Buetow <paul@buetow.org>2026-03-19 08:33:48 +0200
commit74a71ddef8a59bb4af177503a66e3403fa5fb7d5 (patch)
tree4f730d0d5837103224f12d61d2ec2f13c0c2fa03
parent4e990b9da0568e1d31f39a95a97a5383f4201c7f (diff)
fix: align replay stats constructor signature (task 472)
-rw-r--r--ioriot/src/replay/rstats.c3
1 files changed, 1 insertions, 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);
}
-