aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2016-02-01 13:26:01 -0800
committerH. Peter Anvin <hpa@zytor.com>2016-02-01 13:26:01 -0800
commit4d19974d7020488f63651244e1f9f51727c3f66c (patch)
tree15f41dfd38e01f1a6c6152e649d1a0c6007d8450
parentcf9c7d2382eadc5699d3e4032b3e1774eccc36da (diff)
downloadklibc-4d19974d7020488f63651244e1f9f51727c3f66c.tar.gz
[klibc] fwrite: fix typo in comment
Fix typo in comment, no code change. Reported-by: Gilles Espinasse <g.esp@free.fr> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--usr/klibc/stdio/fwrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/klibc/stdio/fwrite.c b/usr/klibc/stdio/fwrite.c
index feb48efbafa79b..9f32ae418af3c3 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);