mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
Fixing a typo in the previous commit.
This commit is contained in:
parent
fff30e26c3
commit
7ab7f5327a
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@
|
|||
IS_CONTINUATION_BYTE(b2) && \
|
||||
IS_CONTINUATION_BYTE(b3) && \
|
||||
(b0 >= 0xf1 || b1 >= 0x90) && \
|
||||
(b0 <= 0xf3 || s[1] <= 0x8F))
|
||||
(b0 <= 0xf3 || b1 <= 0x8F))
|
||||
|
||||
|
||||
/* Convert individual bytes to Unicode code points */
|
||||
|
|
Loading…
Reference in a new issue