aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-09-07 14:50:00 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-09-07 14:50:00 +0200
commitd134aa93414c7d07a938b8076021c62d9987f683 (patch)
treed984cb5e519bc64d68022e384dae880442668fc8
parent0b1c62934215a08351a80977c7cf8e9346683a1e (diff)
downloadbusybox-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.c2
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