summaryrefslogtreecommitdiffstats
path: root/libc/stdio/sscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/sscanf.c')
-rw-r--r--libc/stdio/sscanf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/sscanf.c b/libc/stdio/sscanf.c
index e141eec..a0bdf1c 100644
--- a/libc/stdio/sscanf.c
+++ b/libc/stdio/sscanf.c
@@ -48,7 +48,7 @@ int
sscanf(const char *str, const char *fmt, ...)
{
int ret;
- va_list ap;
+ va_list ap;
FILE f;
struct __sfileext fext;
@@ -60,6 +60,6 @@ sscanf(const char *str, const char *fmt, ...)
f._lb._base = NULL;
va_start(ap, fmt);
ret = vfscanf(&f, fmt, ap);
- va_end(ap);
+ va_end(ap);
return (ret);
}