diff options
Diffstat (limited to 'libc/stdio')
-rw-r--r-- | libc/stdio/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/printf.c b/libc/stdio/printf.c index 204361825..d593f769c 100644 --- a/libc/stdio/printf.c +++ b/libc/stdio/printf.c @@ -470,7 +470,7 @@ int vfprintf(FILE * __restrict stream, register const char * __restrict format, } } while (1); - va_end(ppfs->arg); /* Need to clean up after va_copy! */ + va_end(ppfs.arg); /* Need to clean up after va_copy! */ } __STDIO_THREADUNLOCK(stream); |