From: Denys Vlasenko Date: Thu, 7 Sep 2017 12:50:00 +0000 (+0200) Subject: build system: fix a compiler warning X-Git-Tag: 1_28_0~75 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d134aa93414c7d07a938b8076021c62d9987f683;p=oweals%2Fbusybox.git build system: fix a compiler warning Signed-off-by: Denys Vlasenko --- 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; } }