Fix singular/plural confusion in a printf.

PR:		47953
Submitted by:	Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
MFC after:	3 days
This commit is contained in:
Mike Barcroft 2003-02-06 22:39:44 +00:00
parent a42106534f
commit 2d979824f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=110478

View File

@ -516,7 +516,8 @@ main(int argc, char *argv[])
lct = linecnt(newmsg);
if (lct)
printf("(%d%slines) ", lct, seensubj? " " : " more ");
printf("(%d%sline%s) ", lct, seensubj? " " : " more ",
(lct == 1) ? "" : "s");
if (hdrs) {
printf("\n-----\n");