From 3f5fd305afbe63c6bc4af5e06b315f4fce60b694 Mon Sep 17 00:00:00 2001 From: Larry Doolittle Date: Tue, 9 May 2017 07:08:43 -0700 Subject: Touch up previous "s"[i<2] patch The real equivalence is between the original "s" + (i<2) and &"s"[i<2]. --- tcctools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tcctools.c') diff --git a/tcctools.c b/tcctools.c index 34cefa1..48c7153 100644 --- a/tcctools.c +++ b/tcctools.c @@ -390,7 +390,7 @@ usage: } if (v) - printf("<- %s (%d symbol%s)\n", outfile, i, "s"[i<2]); + printf("<- %s (%d symbol%s)\n", outfile, i, &"s"[i<2]); ret = 0; -- cgit v1.3.1