1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

Typo correction.

This commit is contained in:
Olaf Barthel
2020-02-27 12:15:30 +01:00
parent 9d99542299
commit 57774795af

View File

@ -114,7 +114,7 @@ fwrite(const void *ptr,size_t element_size,size_t count,FILE *stream)
if(__fputc_check((FILE *)file) < 0) if(__fputc_check((FILE *)file) < 0)
goto out; 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 to line buffered mode in order to improve readability of
the output. */ the output. */
buffer_mode = (file->iob_Flags & IOBF_BUFFER_MODE); buffer_mode = (file->iob_Flags & IOBF_BUFFER_MODE);