diff options
Diffstat (limited to 'userland/libc/stdio/vfprintf.c')
-rw-r--r-- | userland/libc/stdio/vfprintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/stdio/vfprintf.c b/userland/libc/stdio/vfprintf.c index f8d56ea..b2d4902 100644 --- a/userland/libc/stdio/vfprintf.c +++ b/userland/libc/stdio/vfprintf.c @@ -249,5 +249,6 @@ int vfprintf(FILE *f, const char *fmt, va_list ap) { precision = -1; } } + fflush(f); return rc; } |