|
Message-Id: <20190722180740.16951-1-me@concati.me> Date: Mon, 22 Jul 2019 14:07:36 -0400 From: Issam Maghni <me@...cati.me> To: musl@...ts.openwall.com Cc: Issam Maghni <me@...cati.me> Subject: [PATCH 1/5] fix warning dangling-else Signed-off-by: Issam Maghni <me@...cati.me> --- src/ctype/towctrans.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ctype/towctrans.c b/src/ctype/towctrans.c index 8f681018..bd0136dd 100644 --- a/src/ctype/towctrans.c +++ b/src/ctype/towctrans.c @@ -259,12 +259,14 @@ static wchar_t __towcase(wchar_t wc, int lower) || (unsigned)wc - 0xabc0 <= 0xfeff-0xabc0) return wc; /* special case because the diff between upper/lower is too big */ - if (lower && (unsigned)wc - 0x10a0 < 0x2e) + if (lower && (unsigned)wc - 0x10a0 < 0x2e) { if (wc>0x10c5 && wc != 0x10c7 && wc != 0x10cd) return wc; else return wc + 0x2d00 - 0x10a0; - if (!lower && (unsigned)wc - 0x2d00 < 0x26) + } + if (!lower && (unsigned)wc - 0x2d00 < 0x26) { if (wc>0x2d25 && wc != 0x2d27 && wc != 0x2d2d) return wc; else return wc + 0x10a0 - 0x2d00; + } if (lower && (unsigned)wc - 0x13a0 < 0x50) return wc + 0xab70 - 0x13a0; if (!lower && (unsigned)wc - 0xab70 < 0x50) -- 2.22.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.