aboutsummaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug.c b/debug.c
index 388b62bc..f5eaa779 100644
--- a/debug.c
+++ b/debug.c
@@ -4035,9 +4035,9 @@ print_instruction(INSTRUCTION *pc, Func_print print_func, FILE *fp, int in_dump)
case Op_comment:
print_memory(pc->memory, func, print_func, fp);
- fprintf(fp, " {%s}\n",
+ fprintf(fp, " [comment_type = %s]\n",
pc->memory->comment_type == EOL_COMMENT ?
- "eol" : "full");
+ "EOL" : "FULL");
break;
case Op_push_i: