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.