svn commit: trunk/busybox/editors

pgf at busybox.net pgf at busybox.net
Fri Sep 16 12:48:20 UTC 2005


Author: pgf
Date: 2005-09-16 05:48:18 -0700 (Fri, 16 Sep 2005)
New Revision: 11479

Log:
initialize a couple of vars whose warnings were suppressed because
i was building w/ debug on before, which suppresses optimization.


Modified:
   trunk/busybox/editors/vi.c


Changeset:
Modified: trunk/busybox/editors/vi.c
===================================================================
--- trunk/busybox/editors/vi.c	2005-09-16 12:32:22 UTC (rev 11478)
+++ trunk/busybox/editors/vi.c	2005-09-16 12:48:18 UTC (rev 11479)
@@ -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.




More information about the busybox-cvs mailing list