Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-09-07 15:50:00 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2017-09-07 15:50:00 +0300
commitd134aa93414c7d07a938b8076021c62d9987f683 (patch)
treed984cb5e519bc64d68022e384dae880442668fc8 /scripts
parent0b1c62934215a08351a80977c7cf8e9346683a1e (diff)
build system: fix a compiler warning
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts')
-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)
printf("%s", line);
return;
}
+ default: // placate compiler
+ break;
}
}