aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/acid/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/acid/print.c')
-rw-r--r--src/cmd/acid/print.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cmd/acid/print.c b/src/cmd/acid/print.c
index 0c66e024..58acdfc9 100644
--- a/src/cmd/acid/print.c
+++ b/src/cmd/acid/print.c
@@ -401,6 +401,10 @@ pexpr(Node *n)
if(n->sym)
Bprint(bout, " %s", n->sym->name);
break;
+ case OUPLUS:
+ Bprint(bout, "+");
+ pexpr(l);
+ break;
}
}