From: Bin Meng Date: Wed, 17 Feb 2021 09:31:47 +0000 (+0800) Subject: test: print_ut: Fix potential build error X-Git-Tag: v2021.07-rc1~42^2~4^2~112 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a03553aaaaee68c0807867a7ff518146c19d10e;p=pandora-u-boot.git test: print_ut: Fix potential build error This files uses the macro U_BOOT_CMD which is defined in command.h, but command.h is conditionally included. Fix it. Signed-off-by: Bin Meng Reviewed-by: Simon Glass --- diff --git a/test/print_ut.c b/test/print_ut.c index a456a449efa..61ea432e46a 100644 --- a/test/print_ut.c +++ b/test/print_ut.c @@ -6,8 +6,8 @@ #define DEBUG #include -#if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD) #include +#if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD) #include #endif #include