diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-02-28 05:40:41 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-02-28 05:40:41 +0200 |
commit | 2f5c47f4b4dae03545168094e504b3657debecf9 (patch) | |
tree | 52fd12b55ac617b634f9e66e248aa8448189a4fa /profile.c | |
parent | 97ffbd91a1b49725259bb2ddf0d27341d6fd4f60 (diff) | |
download | egawk-2f5c47f4b4dae03545168094e504b3657debecf9.tar.gz egawk-2f5c47f4b4dae03545168094e504b3657debecf9.tar.bz2 egawk-2f5c47f4b4dae03545168094e504b3657debecf9.zip |
Fix copy-paste error in profiler's else handling.
Diffstat (limited to 'profile.c')
-rw-r--r-- | profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -933,7 +933,7 @@ cleanup: && pc->branch_end == pc->nexti->nexti->branch_else->lasti) { pprint(pc->nexti, pc->branch_end, IN_ELSE_IF); } else { - fprintf(prof_fp, "{\n", op2str(pc->opcode)); + fprintf(prof_fp, "{\n"); indent_in(); pprint(pc->nexti, pc->branch_end, NO_PPRINT_FLAGS); indent_out(); |