summaryrefslogtreecommitdiff
path: root/src/stdio/fflush.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-05-27 12:51:57 -0400
committerJakob Kaivo <jkk@ung.org>2024-05-27 12:51:57 -0400
commit7d71ad2b8589bef1bdf26c3cfec5ab99b6bba3b9 (patch)
treee434cd77d18881fc33dc7212fc5b9a0083369a9c /src/stdio/fflush.c
parent04e5527eeca240ca81b0b95b58c50ef6a16b8030 (diff)
update last operation after flushing, reopening, or setting file position
Diffstat (limited to 'src/stdio/fflush.c')
-rw-r--r--src/stdio/fflush.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/fflush.c b/src/stdio/fflush.c
index cb5f49c6..a653e0d1 100644
--- a/src/stdio/fflush.c
+++ b/src/stdio/fflush.c
@@ -54,6 +54,8 @@ int fflush(FILE *stream)
RETURN_FAILURE(CONSTANT(EOF));
*/
+ stream->operation = OP_NONE;
+
return ret;
}