From 1b02c9b4763fc44d6b098c4a9f036ecf4f9841fe Mon Sep 17 00:00:00 2001 From: Markus Fritsche Date: Sat, 25 Apr 2026 21:16:35 +0000 Subject: [PATCH] src/h264.c: include utils.h for request_log() prototype GCC's -Wimplicit-function-declaration is fatal in current toolchains (GCC 14+) but was a warning when this code was written. h264.c uses request_log() in two places without including utils.h; the build was quietly relying on an implicit declaration that recent compilers reject. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/h264.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/h264.c b/src/h264.c index 25bc8cb..5599231 100644 --- a/src/h264.c +++ b/src/h264.c @@ -36,6 +36,7 @@ #include #include "request.h" +#include "utils.h" #include "surface.h" #include "v4l2.h"