[klibc] [klibc:master] fwrite: fix typo in comment

klibc-bot for H. Peter Anvin hpa at zytor.com
Mon Feb 1 13:30:02 PST 2016


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


More information about the klibc mailing list