Touch up previous "s"[i<2] patch

The real equivalence is between the original "s" + (i<2)
and &"s"[i<2].
This commit is contained in:
Larry Doolittle
2017-05-09 07:08:43 -07:00
parent 3c0a73822d
commit 3f5fd305af
2 changed files with 2 additions and 2 deletions

View File

@@ -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;