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 | |
parent | 0b1c62934215a08351a80977c7cf8e9346683a1e (diff) | |
download | busybox-w32-d134aa93414c7d07a938b8076021c62d9987f683.tar.gz busybox-w32-d134aa93414c7d07a938b8076021c62d9987f683.tar.bz2 busybox-w32-d134aa93414c7d07a938b8076021c62d9987f683.zip |
build system: fix a compiler warning
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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) | |||
118 | printf("%s", line); | 118 | printf("%s", line); |
119 | return; | 119 | return; |
120 | } | 120 | } |
121 | default: // placate compiler | ||
122 | break; | ||
121 | } | 123 | } |
122 | } | 124 | } |
123 | 125 | ||