common/log_syslog.c: Add missing include of <env.h>

This file was making environment calls without including <env.h> and so
relying on an indirect inclusion from elsewhere. Add the missing include
directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Tom Rini 2025-07-01 19:05:54 -06:00
parent 1e8665e513
commit 3393f3ddac

View File

@ -5,6 +5,7 @@
* Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
*/
#include <env.h>
#include <log.h>
#include <net.h>
#include <asm/global_data.h>