summaryrefslogtreecommitdiff
path: root/libc/stdio/printf.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-10-29 12:10:10 +0000
committerEric Andersen <andersen@codepoet.org>2002-10-29 12:10:10 +0000
commit7ce8fe43bd3e12103cc399165632e0bfbeb1f99e (patch)
tree8b6f893c154b6203cb5734097b106f157168a7d0 /libc/stdio/printf.c
parent4e4d12772baf4b0f0edf403866359490576d426e (diff)
Fix a silly typo for Manuel
-Erik
Diffstat (limited to 'libc/stdio/printf.c')
-rw-r--r--libc/stdio/printf.c2
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);