X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=config%2Fmenu.c;h=72c9dba84c5dbd46cb8ae2824a85d54603dbaafe;hb=63be7663b0023fc396b8edb8a1d2a8b9c255f5f1;hp=a26cc5d2a9b0217d9c3d52bf0dab21b7337e95d2;hpb=d3bea25f5238e5abfe6d061c1e6840e354d27bf8;p=carl9170fw.git diff --git a/config/menu.c b/config/menu.c index a26cc5d..72c9dba 100644 --- a/config/menu.c +++ b/config/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; @@ -586,7 +586,7 @@ static void get_prompt_str(struct gstr *r, struct property *prop, str_printf(r, _(" Location:\n")); for (j = 4; --i >= 0; j += 2) { menu = submenu[i]; - if (head && location && menu == location) + if (jump && menu == location) jump->offset = strlen(r->s); str_printf(r, "%*c-> %s", j, ' ', _(menu_get_prompt(menu)));