Skip to content

Commit 7ab7f53

Browse files
author
Alexander Barkov
committed
Fixing a typo in the previous commit.
1 parent fff30e2 commit 7ab7f53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

strings/ctype-utf8.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
IS_CONTINUATION_BYTE(b2) && \
8585
IS_CONTINUATION_BYTE(b3) && \
8686
(b0 >= 0xf1 || b1 >= 0x90) && \
87-
(b0 <= 0xf3 || s[1] <= 0x8F))
87+
(b0 <= 0xf3 || b1 <= 0x8F))
8888

8989

9090
/* Convert individual bytes to Unicode code points */

0 commit comments

Comments
 (0)