From 3393f3ddac2abc4446dc1e5248997c490d08751b Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Tue, 1 Jul 2025 19:05:54 -0600 Subject: [PATCH] common/log_syslog.c: Add missing include of This file was making environment calls without including and so relying on an indirect inclusion from elsewhere. Add the missing include directly. Signed-off-by: Tom Rini --- common/log_syslog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common/log_syslog.c b/common/log_syslog.c index 0dcb5f7cdea..73bd3aca07e 100644 --- a/common/log_syslog.c +++ b/common/log_syslog.c @@ -5,6 +5,7 @@ * Copyright (c) 2020, Heinrich Schuchardt */ +#include #include #include #include -- 2.47.2