commit | 135cecbbcee8bfe10ef7f1edd8e485a7cf86be84 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sun Apr 12 00:00:57 2009 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sun Apr 12 00:00:57 2009 +0000 |
tree | ee3105888fd66ae6250185e5eef4a534e087dc2d | |
parent | c43430f1b92d82bcb25dd8af0fcc85b579cfc2ee [diff] [blame] |
ash: fix warning in debug build
diff --git a/shell/ash.c b/shell/ash.c index fe8c1be..4acc301 100644 --- a/shell/ash.c +++ b/shell/ash.c
@@ -11848,7 +11848,9 @@ #endif } n = parsecmd(inter); - /* showtree(n); DEBUG */ +#if DEBUG + showtree(n); +#endif if (n == NEOF) { if (!top || numeof >= 50) break;