From a1b13c1da9c9d8a97ecf1771e46576820b6373a6 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Tue, 10 Mar 2026 19:34:38 +1100 Subject: fix(bmp): Add no implementaion warning for BITMAP header handler --- src/format/image/bmp.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/format/image/bmp.c b/src/format/image/bmp.c index 632def7..e565b16 100644 --- a/src/format/image/bmp.c +++ b/src/format/image/bmp.c @@ -1,3 +1,4 @@ +#include "result.h" #include #include @@ -64,7 +65,12 @@ ff_result ff_open_bmp(ff_stream *stream, ff_bmp_ctx **out_ctx, ff_flag require_v } ff_result ff_bmp_header_handler(uint8_t *buf, size_t len, ff_bmp_ctx *ctx) { + (void) buf; + (void) ctx; + if (len != FF_BMP_HEADER_SIZE) { } + + return FF_RESULT_WARN_NO_IMPL; } \ No newline at end of file -- cgit v1.2.3