summaryrefslogtreecommitdiff
path: root/src/stdio/vfscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/vfscanf.c')
-rw-r--r--src/stdio/vfscanf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/stdio/vfscanf.c b/src/stdio/vfscanf.c
index 99053885..430419a5 100644
--- a/src/stdio/vfscanf.c
+++ b/src/stdio/vfscanf.c
@@ -3,12 +3,12 @@
int vfscanf(FILE * restrict stream, const char * restrict format, va_list arg)
{
- struct io_options opt = {
- .fnname = __func__,
- .stream = stream,
- };
+ struct io_options opt = {
+ .fnname = __func__,
+ .stream = stream,
+ };
- return __scanf(&opt, format, arg);
+ return __scanf(&opt, format, arg);
}
/*