summaryrefslogtreecommitdiff
path: root/bcc/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'bcc/debug.c')
-rw-r--r--bcc/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bcc/debug.c b/bcc/debug.c
index e437f78..2b1e12e 100644
--- a/bcc/debug.c
+++ b/bcc/debug.c
@@ -161,7 +161,7 @@ struct nodestruct *exp;
{
if (!debugon)
return;
- comment();
+ outstr("! Debug: ");
if (exp->tag < FIRSTOP && exp->tag > LASTOP)
outstr("unknown op");
else
@@ -186,7 +186,7 @@ struct nodestruct *exp;
PUBLIC void debugswap()
{
if (debugon)
- outnstr("* swapping");
+ outnstr("! Debug: expression subtree swapping");
}
PRIVATE void outindchars(byte, count)