summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2015-01-13 06:47:30 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2015-01-13 08:47:30 +0100
commit616b343493f632179d4fb699184d7481ca7c30fa (patch)
treefa15db5863ca56337d8804378e007c88e2dc9bcd /scripts
parent9cd14d260aa22ae089f81a07be2c0e5dea2ffc94 (diff)
downloadbarebox-616b343493f632179d4fb699184d7481ca7c30fa.tar.gz
barebox-616b343493f632179d4fb699184d7481ca7c30fa.tar.xz
kconfig/menu.c:590: fix warning: ‘jump’ may be used uninitialized in this function [-Wmaybe-uninitialized]
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c
index a26cc5d2a9..584e0fc10d 100644
--- a/scripts/kconfig/menu.c
+++ b/scripts/kconfig/menu.c
@@ -548,7 +548,7 @@ static void get_prompt_str(struct gstr *r, struct property *prop,
{
int i, j;
struct menu *submenu[8], *menu, *location = NULL;
- struct jump_key *jump;
+ struct jump_key *jump = NULL;
str_printf(r, _("Prompt: %s\n"), _(prop->text));
menu = prop->menu->parent;