From: Paul Fox Date: Fri, 16 Sep 2005 12:48:18 +0000 (-0000) Subject: initialize a couple of vars whose warnings were suppressed because X-Git-Tag: 1_1_0~718 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c350485b18b95954496e12161a87ee016f2bbb81;p=oweals%2Fbusybox.git initialize a couple of vars whose warnings were suppressed because i was building w/ debug on before, which suppresses optimization. --- diff --git a/editors/vi.c b/editors/vi.c index ae86b7233..76e4d6684 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -2674,7 +2674,7 @@ static int bufsum(char *buf, int count) //----- Draw the status line at bottom of the screen ------------- static void show_status_line(void) { - int cnt, cksum; + int cnt = 0, cksum = 0; // either we already have an error or status message, or we // create one.