aboutsummaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-10-05 20:06:38 +0300
committerArnold D. Robbins <arnold@skeeve.com>2014-10-05 20:06:38 +0300
commit6b818c7f463e1bd6b9470f4bfb694f240ac3e5c2 (patch)
tree9e3b67fa7b19260683504dc1669ba563a6c91bba /profile.c
parent42bcb6246432790af31958d5445cd035fe9966a5 (diff)
downloadegawk-6b818c7f463e1bd6b9470f4bfb694f240ac3e5c2.tar.gz
egawk-6b818c7f463e1bd6b9470f4bfb694f240ac3e5c2.tar.bz2
egawk-6b818c7f463e1bd6b9470f4bfb694f240ac3e5c2.zip
Minor typo fix in profiling output.
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/profile.c b/profile.c
index 84e7f9da..a5ed381b 100644
--- a/profile.c
+++ b/profile.c
@@ -190,7 +190,7 @@ pprint(INSTRUCTION *startp, INSTRUCTION *endp, bool in_for_header)
if (rule != Rule) {
if (! rule_count[rule]++)
- fprintf(prof_fp, _("\t# %s rules(s)\n\n"), ruletab[rule]);
+ fprintf(prof_fp, _("\t# %s rule(s)\n\n"), ruletab[rule]);
fprintf(prof_fp, "\t%s {\n", ruletab[rule]);
ip = (pc + 1)->firsti;
} else {