diff options
Diffstat (limited to 'lib/libc/stdio/fprintf.c')
| -rw-r--r-- | lib/libc/stdio/fprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/fprintf.c b/lib/libc/stdio/fprintf.c index 4283b424..c0d14a48 100644 --- a/lib/libc/stdio/fprintf.c +++ b/lib/libc/stdio/fprintf.c @@ -6,7 +6,7 @@ int fprintf(FILE *restrict stream, const char *restrict format, ...) int r; va_list ap; va_start(ap, format); - r = vfprintf(stdout, format, ap); + r = vfprintf(stream, format, ap); va_end(ap); return r; } |
