aboutsummaryrefslogtreecommitdiff
path: root/src/ellinika
diff options
context:
space:
mode:
Diffstat (limited to 'src/ellinika')
-rw-r--r--src/ellinika/utf8.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ellinika/utf8.c b/src/ellinika/utf8.c
index b946a3b..c8de9de 100644
--- a/src/ellinika/utf8.c
+++ b/src/ellinika/utf8.c
@@ -1675,7 +1675,8 @@ utf8_mbtowc_internal(void *data, int (*read) (void *), unsigned int *pwc)
if (!((s[1] ^ 0x80) < 0x40 &&
(s[2] ^ 0x80) < 0x40 &&
- (s[3] ^ 0x80) < 0x40 && (s[0] >= 0xf1 || s[1] >= 0x90))) {
+ (s[3] ^ 0x80) < 0x40 &&
+ (s[0] >= 0xf1 || s[1] >= 0x90))) {
errno = EILSEQ;
return -1;
}

Return to:

Send suggestions and report system problems to the System administrator.