From: Julien Danjou Date: Tue, 7 Nov 2006 17:31:06 +0000 (+0100) Subject: Fix compilation warnings in menu.c X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=186cc3cb513f2387959888d896dbf67b250a9035;ds=sidebyside Fix compilation warnings in menu.c Shadow declaration of i and unused attribute Signed-off-by: Julien Danjou Signed-off-by: Pierre Habouzit --- diff --git a/menu.c b/menu.c index eb19d5a..90e2bdc 100644 --- a/menu.c +++ b/menu.c @@ -625,7 +625,7 @@ void menu_prev_entry (MUTTMENU * menu) mutt_error _("You are on the first entry."); } -static int default_color (int i) +static int default_color (int i __attribute__ ((unused))) { return ColorDefs[MT_COLOR_NORMAL]; } @@ -970,10 +970,10 @@ int mutt_menuLoop (MUTTMENU * menu) menu->redraw = REDRAW_INDEX; } else if (menu->max) { - int i = menu->tag (menu, menu->current, -1); + int t = menu->tag (menu, menu->current, -1); - menu->tagged += i; - if (i && option (OPTRESOLVE) && menu->current < menu->max - 1) { + menu->tagged += t; + if (t && option (OPTRESOLVE) && menu->current < menu->max - 1) { menu->current++; menu->redraw = REDRAW_MOTION_RESYNCH; }