aboutsummaryrefslogtreecommitdiff
path: root/tccpe.c
diff options
context:
space:
mode:
authorLarry Doolittle <ldoolitt@recycle.lbl.gov>2017-05-09 07:08:43 -0700
committerLarry Doolittle <ldoolitt@recycle.lbl.gov>2017-05-09 07:08:43 -0700
commit3f5fd305afbe63c6bc4af5e06b315f4fce60b694 (patch)
tree8a85b5d7d3e5623d30f3a3899b5a557675b6b610 /tccpe.c
parent3c0a73822dd173b47ac5c04935b64af552093a44 (diff)
downloadtinycc-3f5fd305afbe63c6bc4af5e06b315f4fce60b694.tar.gz
tinycc-3f5fd305afbe63c6bc4af5e06b315f4fce60b694.tar.bz2
Touch up previous "s"[i<2] patch
The real equivalence is between the original "s" + (i<2) and &"s"[i<2].
Diffstat (limited to 'tccpe.c')
-rw-r--r--tccpe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tccpe.c b/tccpe.c
index cecdd37..ff7c128 100644
--- a/tccpe.c
+++ b/tccpe.c
@@ -965,7 +965,7 @@ static void pe_build_exports(struct pe_info *pe)
} else {
fprintf(op, "LIBRARY %s\n\nEXPORTS\n", dllname);
if (pe->s1->verbose)
- printf("<- %s (%d symbol%s)\n", buf, sym_count, "s"[sym_count < 2]);
+ printf("<- %s (%d symbol%s)\n", buf, sym_count, &"s"[sym_count < 2]);
}
#endif