svn commit: [26067] trunk/busybox/shell

vda at busybox.net vda at busybox.net
Sun Apr 12 00:00:59 UTC 2009


Author: vda
Date: 2009-04-12 00:00:57 +0000 (Sun, 12 Apr 2009)
New Revision: 26067

Log:
ash: fix warning in debug build



Modified:
   trunk/busybox/shell/ash.c


Changeset:
Modified: trunk/busybox/shell/ash.c
===================================================================
--- trunk/busybox/shell/ash.c	2009-04-11 19:30:04 UTC (rev 26066)
+++ trunk/busybox/shell/ash.c	2009-04-12 00:00:57 UTC (rev 26067)
@@ -11848,7 +11848,9 @@
 #endif
 		}
 		n = parsecmd(inter);
-		/* showtree(n); DEBUG */
+#if DEBUG
+		showtree(n);
+#endif
 		if (n == NEOF) {
 			if (!top || numeof >= 50)
 				break;



More information about the busybox-cvs mailing list