aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@penguin.transmeta.com>2003-04-04 12:20:09 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:00:10 -0700
commitd97165e1fe7d89c35040c852d455262a95475f4d (patch)
treebc00deaa2b007c8a91a9909002e8e33cd14f2f5b /show-parse.c
parentFix member dereferences to match the new world order. (diff)
downloadsparse-d97165e1fe7d89c35040c852d455262a95475f4d.tar.gz
sparse-d97165e1fe7d89c35040c852d455262a95475f4d.tar.bz2
sparse-d97165e1fe7d89c35040c852d455262a95475f4d.zip
Remove extra '<..>' in pretty-printing of expressions.
Diffstat (limited to 'show-parse.c')
-rw-r--r--show-parse.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/show-parse.c b/show-parse.c
index 5d6f9aa..b481319 100644
--- a/show-parse.c
+++ b/show-parse.c
@@ -472,9 +472,8 @@ void show_expression(struct expression *expr)
show_expression(expr->right);
break;
case EXPR_PREOP:
- printf("%s<", show_special(expr->op));
+ printf("%s", show_special(expr->op));
show_expression(expr->unop);
- printf(">");
break;
case EXPR_POSTOP:
show_expression(expr->unop);