klibc-bot for H. Peter Anvin
2016-Feb-01 21:30 UTC
[klibc] [klibc:master] fwrite: fix typo in comment
Commit-ID: 4d19974d7020488f63651244e1f9f51727c3f66c Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=4d19974d7020488f63651244e1f9f51727c3f66c Author: H. Peter Anvin <hpa at zytor.com> AuthorDate: Mon, 1 Feb 2016 13:26:01 -0800 Committer: H. Peter Anvin <hpa at zytor.com> CommitDate: Mon, 1 Feb 2016 13:26:01 -0800 [klibc] fwrite: fix typo in comment Fix typo in comment, no code change. Reported-by: Gilles Espinasse <g.esp at free.fr> Signed-off-by: H. Peter Anvin <hpa at zytor.com> --- usr/klibc/stdio/fwrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/klibc/stdio/fwrite.c b/usr/klibc/stdio/fwrite.c index feb48ef..9f32ae4 100644 --- a/usr/klibc/stdio/fwrite.c +++ b/usr/klibc/stdio/fwrite.c @@ -21,7 +21,7 @@ static size_t fwrite_noflush(const void *buf, size_t count, if (count >= f->bufsiz) { /* - * The the write is large, so bypass + * The write is large, so bypass * buffering entirely. */ rv = write(f->pub._IO_fileno, p, count);
Reasonably Related Threads
- [klibc:master] fwrite: flush before a large write to allow better bypass
- [klibc:master] fwrite: use memrchr() to find the final ' \n' in _IOLBF mode
- [PATCH] Very minor various typo fixes
- [klibc:master] stdio: Define all the _unlocked functions and macros
- [PATCH] fix fwrite declaration