aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-02-28 05:40:41 +0200
committerArnold D. Robbins <arnold@skeeve.com>2016-02-28 20:28:41 +0200
commitbfca1619d658bc30835f4fb29c53ddfe206f4b17 (patch)
treea1681e7ae398314340003ef89884de1b7877ec6e
parent56469abd6e78971e8fc6f9eefcfc184d528c5e84 (diff)
downloadegawk-bfca1619d658bc30835f4fb29c53ddfe206f4b17.tar.gz
egawk-bfca1619d658bc30835f4fb29c53ddfe206f4b17.tar.bz2
egawk-bfca1619d658bc30835f4fb29c53ddfe206f4b17.zip
Fix copy-paste error in profiler's else handling.
-rw-r--r--ChangeLog5
-rw-r--r--profile.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ac6f192..0b8c5e0f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-02-28 Arnold D. Robbins <arnold@skeeve.com>
+
+ * profile.c (pprint): Fix copy-paste error in else handling.
+ Thanks to Michal Jaegermann for the report.
+
2016-02-23 Arnold D. Robbins <arnold@skeeve.com>
* config.guess, config.rpath, config.sub: Update to latest
diff --git a/profile.c b/profile.c
index 3d0b1cbc..d002e237 100644
--- a/profile.c
+++ b/profile.c
@@ -885,7 +885,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();