From 57774795afa32b4017d246bd0250e5a11d38ed97 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Thu, 27 Feb 2020 12:15:30 +0100 Subject: [PATCH] Typo correction. --- library/stdio_fwrite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdio_fwrite.c b/library/stdio_fwrite.c index d4621b0..8ab955e 100644 --- a/library/stdio_fwrite.c +++ b/library/stdio_fwrite.c @@ -114,7 +114,7 @@ fwrite(const void *ptr,size_t element_size,size_t count,FILE *stream) if(__fputc_check((FILE *)file) < 0) goto out; - /* If this is an unbuffered interactiv stream, we will switch + /* If this is an unbuffered interactive stream, we will switch to line buffered mode in order to improve readability of the output. */ buffer_mode = (file->iob_Flags & IOBF_BUFFER_MODE);