summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-02-23 10:31:38 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-02-23 10:31:38 +1100
commit67528eb0f56c0eea45480f90aceefef090a3550c (patch)
tree99c2cdd4886e5df50d2c30f1344da946a878078c
parentfa59b89a30f5ec834f6974edb236c7aba05ee229 (diff)
fix(bench): Return OK type at bench marker creation function
-rw-r--r--bench/bench.h2
1 files changed, 2 insertions, 0 deletions
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) {