summaryrefslogtreecommitdiffstats
path: root/libc/stdio/snprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/snprintf.c')
-rw-r--r--libc/stdio/snprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/snprintf.c b/libc/stdio/snprintf.c
index e830c0f..45ef7eb 100644
--- a/libc/stdio/snprintf.c
+++ b/libc/stdio/snprintf.c
@@ -40,7 +40,7 @@
int
snprintf(char *str, size_t n, const char *fmt, ...)
{
- va_list ap;
+ va_list ap;
int ret;
char dummy;
FILE f;
@@ -61,7 +61,7 @@ snprintf(char *str, size_t n, const char *fmt, ...)
f._bf._size = f._w = n - 1;
va_start(ap, fmt);
ret = vfprintf(&f, fmt, ap);
- va_end(ap);
+ va_end(ap);
*f._p = '\0';
return (ret);
}