commit b670dbdea0cbe8f952c8b9aa134fd8ac6f34e271
parent 8a299a6aad02762c54b653af2551edae7cd62e53
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Thu, 16 Aug 2012 19:14:02 +0200
Fixed bug printing represetation of postdecrement
Text assigned to this operator was the same than preincrement.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tree.c b/tree.c
@@ -132,7 +132,7 @@ prtree(register struct node *np)
[OFIELD] = {2, "."},
[OPTR] = {2, "->"},
[OPOSTINC] = {1, ".++"},
- [OPOSTDEC] = {1, "++."},
+ [OPOSTDEC] = {1, ".--"},
[OPREINC] = {1, "++."},
[OPREDEC] = {1, "--."},
[OADDR] = {1, "&."},