summaryrefslogtreecommitdiff
path: root/lib/vsprintf.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:39:40 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 00:32:26 +0300
commitdeda5d5ecd440685e0c07fb6322ff6faa855a1be (patch)
tree4a5e5ebab0e46dce3c99a80ea24f27309212c996 /lib/vsprintf.c
parent299cca0e72fe676f78ded3c9c143cf2c004b923e (diff)
downloadu-boot-deda5d5ecd440685e0c07fb6322ff6faa855a1be.tar.xz
Correct SPL use of EFI_APP
This converts 1 usage of this option to the non-SPL form, since there is no SPL_EFI_APP defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/vsprintf.c')
-rw-r--r--lib/vsprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index 8de3882fb6..2d13e68b57 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -629,7 +629,7 @@ repeat:
case 's':
/* U-Boot uses UTF-16 strings in the EFI context only. */
-#if (CONFIG_IS_ENABLED(EFI_LOADER) || CONFIG_IS_ENABLED(EFI_APP)) && \
+#if (CONFIG_IS_ENABLED(EFI_LOADER) || IS_ENABLED(CONFIG_EFI_APP)) && \
!defined(API_BUILD)
if (qualifier == 'l') {
str = string16(str, end, va_arg(args, u16 *),