mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-11 09:50:12 +00:00
Spelling correction (1 bytes' is now printed
1 byte')
PR: bin/3376 Submitted by: me
This commit is contained in:
parent
2ba8646379
commit
6213555ca5
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25995
@ -368,8 +368,9 @@ ktrgenio(ktr, len)
|
||||
else
|
||||
screenwidth = 80;
|
||||
}
|
||||
printf("fd %d %s %d bytes\n", ktr->ktr_fd,
|
||||
ktr->ktr_rw == UIO_READ ? "read" : "wrote", datalen);
|
||||
printf("fd %d %s %d byte%s\n", ktr->ktr_fd,
|
||||
ktr->ktr_rw == UIO_READ ? "read" : "wrote", datalen,
|
||||
datalen == 1 ? "" : "s");
|
||||
if (maxdata && datalen > maxdata)
|
||||
datalen = maxdata;
|
||||
(void)printf(" \"");
|
||||
|
Loading…
Reference in New Issue
Block a user