diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-09-07 14:50:00 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-09-07 14:50:00 +0200 |
commit | d134aa93414c7d07a938b8076021c62d9987f683 (patch) | |
tree | d984cb5e519bc64d68022e384dae880442668fc8 /scripts/kconfig | |
parent | 0b1c62934215a08351a80977c7cf8e9346683a1e (diff) | |
download | busybox-d134aa93414c7d07a938b8076021c62d9987f683.tar.gz |
build system: fix a compiler warning
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/conf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index e89637e7c..57734b590 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -118,6 +118,8 @@ static void conf_askvalue(struct symbol *sym, const char *def) printf("%s", line); return; } + default: // placate compiler + break; } } |