From 9d9954229973a2c8e79b82c7fcc56a820381402c Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Thu, 27 Feb 2020 12:15:17 +0100 Subject: [PATCH] Fix for indentation error. --- library/stdio_puts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdio_puts.c b/library/stdio_puts.c index 3883d8d..61b48fe 100644 --- a/library/stdio_puts.c +++ b/library/stdio_puts.c @@ -112,7 +112,7 @@ puts(const char *s) may have buffered data around, queued to be printed right now. This is intended to improve performance as it takes more effort to write a single character to a file than to write a bunch. */ - if(result == 0 && (file->iob_Flags & IOBF_BUFFER_MODE) == IOBF_BUFFER_MODE_NONE) + if(result == 0 && (file->iob_Flags & IOBF_BUFFER_MODE) == IOBF_BUFFER_MODE_NONE) { if(__iob_write_buffer_is_valid(file) && __flush_iob_write_buffer(file) < 0) {