From: Denis Vlasenko Date: Sun, 12 Apr 2009 00:00:57 +0000 (-0000) Subject: ash: fix warning in debug build X-Git-Tag: 1_14_0~28 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=135cecbbcee8bfe10ef7f1edd8e485a7cf86be84;p=oweals%2Fbusybox.git ash: fix warning in debug build --- diff --git a/shell/ash.c b/shell/ash.c index fe8c1bed2..4acc30110 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -11848,7 +11848,9 @@ cmdloop(int top) #endif } n = parsecmd(inter); - /* showtree(n); DEBUG */ +#if DEBUG + showtree(n); +#endif if (n == NEOF) { if (!top || numeof >= 50) break;