diff options
Diffstat (limited to 'libc/stdio/printf.c')
-rw-r--r-- | libc/stdio/printf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libc/stdio/printf.c b/libc/stdio/printf.c index e311a4f87..92b5b5956 100644 --- a/libc/stdio/printf.c +++ b/libc/stdio/printf.c @@ -1451,7 +1451,6 @@ int vasprintf(char **__restrict buf, const char * __restrict format, return -1; } rv = vfprintf(f, format, arg); - if (rv >= 0) fputc('\0', f); fclose(f); if (rv < 0) { free(*buf); |