diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-10 21:06:43 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-10 21:06:43 +0300 |
commit | d508085853c94f298960606a28691ac36f89e5f7 (patch) | |
tree | 55980a3b25d2b09831e123a8cc3f311cf8a008b2 /debug.c | |
parent | 113d1060248e350200bc098a3d1c22fdb4835db3 (diff) | |
parent | db02b3102f663820799ba192590e1c9cf932f524 (diff) | |
download | egawk-d508085853c94f298960606a28691ac36f89e5f7.tar.gz egawk-d508085853c94f298960606a28691ac36f89e5f7.tar.bz2 egawk-d508085853c94f298960606a28691ac36f89e5f7.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4032,7 +4032,7 @@ 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, " [comment_type = %s]\n", + print_func(fp, " [comment_type = %s]\n", pc->memory->comment_type == EOL_COMMENT ? "EOL" : "FULL"); break; |