|
Message-Id: <20170709205848.16323-1-b.brachaczek@gmail.com> Date: Sun, 9 Jul 2017 22:58:48 +0200 From: Bartosz Brachaczek <b.brachaczek@...il.com> To: musl@...ts.openwall.com Cc: Bartosz Brachaczek <b.brachaczek@...il.com> Subject: [PATCH] slightly simplify a condition in vfwscanf the OR is not needed since commit de80ea9f1c2821cbb4205533b86d5d17f9e8d376. --- src/stdio/vfwscanf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdio/vfwscanf.c b/src/stdio/vfwscanf.c index 1ebc5cef..ad8e2b9a 100644 --- a/src/stdio/vfwscanf.c +++ b/src/stdio/vfwscanf.c @@ -191,7 +191,7 @@ int vfwscanf(FILE *restrict f, const wchar_t *restrict fmt, va_list ap) } if (t != 'n') { - if (t != '[' && (t|32) != 'c') + if (t != '[' && t != 'c') while (iswspace((c=getwc(f)))) pos++; else c=getwc(f); -- 2.13.0
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.