Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-12 04:00:57 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-12 04:00:57 +0400
commit135cecbbcee8bfe10ef7f1edd8e485a7cf86be84 (patch)
treeee3105888fd66ae6250185e5eef4a534e087dc2d
parentc43430f1b92d82bcb25dd8af0fcc85b579cfc2ee (diff)
ash: fix warning in debug build
-rw-r--r--shell/ash.c4
1 files changed, 3 insertions, 1 deletions
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;