[PATCH RESEND 05/14] test: log_filter: Include vsprintf.h
"Peng Fan (OSS)" <[email protected]> Tue, 03 Feb 2026 19:32:09 +0800
| Newsgroups | io.groups.u-boot-amlogic,org.u-boot-project.lists.u-boot |
|---|---|
| Message-ID | <[email protected]> |
From: Peng Fan <[email protected]> snprintf is used, need to include vsprintf.h. Otherwise there will be build error after asm/global_data.h is removed. Signed-off-by: Peng Fan <[email protected]> --- test/log/log_filter.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/log/log_filter.c b/test/log/log_filter.c index 8622dcf29130f6f6eb70536e042c2ed51ad61893..680c60164b623bb30bf0a5457c190bab8d97468a 100644 --- a/test/log/log_filter.c +++ b/test/log/log_filter.c @@ -5,6 +5,7 @@ #include <console.h> #include <log.h> +#include <vsprintf.h> #include <asm/global_data.h> #include <test/log.h> #include <test/ut.h> -- 2.37.1