diff options
author | Tom Rini <trini@konsulko.com> | 2025-07-01 19:05:54 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-07-10 08:41:12 -0600 |
commit | 3393f3ddac2abc4446dc1e5248997c490d08751b (patch) | |
tree | 11c4b34f2cabb6e275b38c9c91f8abd038155f80 | |
parent | 1e8665e5134380168187e7e5487cad44e4e8e3d1 (diff) |
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>
-rw-r--r-- | common/log_syslog.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <xypron.glpk@gmx.de> */ +#include <env.h> #include <log.h> #include <net.h> #include <asm/global_data.h> |