summaryrefslogtreecommitdiff
path: root/src/stdio/vfscanf.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-09-25 13:39:41 -0400
committerJakob Kaivo <jkk@ung.org>2020-09-25 13:39:41 -0400
commit097e3e2dc18091096fc846fcc15402accf906448 (patch)
tree76a9e6dcffc7130b753baf07e0fd75f6b903e9c1 /src/stdio/vfscanf.c
parentd6f9cfcf2d3e39894f458b8b96e3fb593b523842 (diff)
spaces to tabs
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);
}
/*