Cosmetic : fixed an indentation in unistr
parent
162b4f8051
commit
4ce33daf6c
|
@ -710,9 +710,9 @@ static int utf8_to_unicode(u32 *wc, const char *s)
|
|||
| ((u32)(s[1] & 0x3F) << 12)
|
||||
| ((u32)(s[2] & 0x3F) << 6)
|
||||
| ((u32)(s[3] & 0x3F));
|
||||
/* Check valid ranges */
|
||||
if ((*wc <= 0x10ffff) && (*wc >= 0x10000))
|
||||
return 4;
|
||||
/* Check valid ranges */
|
||||
if ((*wc <= 0x10ffff) && (*wc >= 0x10000))
|
||||
return 4;
|
||||
}
|
||||
goto fail;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue