Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2017-11-30 13:38:32 +0300
committerCorinna Vinschen <corinna@vinschen.de>2017-11-30 13:41:36 +0300
commit5e4a1c9c97af46aa619e0002f86734ee2662133b (patch)
tree9b10d07b2437c1fd0162eb9b3c200326d8770f01 /newlib/libc/stdio
parent2e328edee411d4f21603417fedf218b44260e788 (diff)
newlib: vfscanf: fix formatting
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib/libc/stdio')
-rw-r--r--newlib/libc/stdio/vfscanf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/vfscanf.c b/newlib/libc/stdio/vfscanf.c
index b6b90c80e..b9d59aa5b 100644
--- a/newlib/libc/stdio/vfscanf.c
+++ b/newlib/libc/stdio/vfscanf.c
@@ -871,7 +871,7 @@ _DEFUN(__SVFSCANF_R, (rptr, fp, fmt0, ap),
}
else
#endif
- if (flags & SUPPRESS)
+ if (flags & SUPPRESS)
{
size_t sum = 0;
for (;;)
@@ -1013,7 +1013,7 @@ _DEFUN(__SVFSCANF_R, (rptr, fp, fmt0, ap),
}
else
#endif
- if (flags & SUPPRESS)
+ if (flags & SUPPRESS)
{
n = 0;
while (!isspace (*fp->_p))