commit | c350485b18b95954496e12161a87ee016f2bbb81 | [log] [tgz] |
---|---|---|
author | Paul Fox <pgf@brightstareng.com> | Fri Sep 16 12:48:18 2005 +0000 |
committer | Paul Fox <pgf@brightstareng.com> | Fri Sep 16 12:48:18 2005 +0000 |
tree | 30fdc38482e1dbbf280424c1d44cb607067ab704 | |
parent | 2b306e906f6ba9fe990365a0faa00140d7f4dbe1 [diff] |
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 ae86b72..76e4d66 100644 --- a/editors/vi.c +++ b/editors/vi.c
@@ -2674,7 +2674,7 @@ //----- 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.