libs/libc/stdio/Kconfig: Need to guard LIBC_NUMBERED_ARGS against LIBC_LEGACY_PRINTF

This commit is contained in:
Johannes 2019-02-18 13:28:20 -06:00 committed by Gregory Nutt
parent 698d942f8d
commit 77aa1f1179

View File

@ -97,7 +97,7 @@ config LIBC_PRINT_MINIMAL
config LIBC_NUMBERED_ARGS
bool "Enable numbered arguments in printf"
default n
depends on LIBC_FLOATINGPOINT || LIBC_LONG_LONG || !LIBC_PRINT_MINIMAL
depends on (LIBC_FLOATINGPOINT || LIBC_LONG_LONG || !LIBC_PRINT_MINIMAL) && !LIBC_PRINT_LEGACY
---help---
Enables support for numbered arguments in printf.