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

