From 67528eb0f56c0eea45480f90aceefef090a3550c Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Mon, 23 Feb 2026 10:31:38 +1100 Subject: fix(bench): Return OK type at bench marker creation function --- bench/bench.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bench') diff --git a/bench/bench.h b/bench/bench.h index b999490..6e31623 100644 --- a/bench/bench.h +++ b/bench/bench.h @@ -47,6 +47,8 @@ static inline ff_result ff_bench_mark(ff_bench *b, const char *label) { b->markers[b->_mcount] = m; b->_mcount++; + + return FF_RESULT_OK; } static inline double ff_bench_seconds(const ff_bench *b) { -- cgit v1.2.3