Skip to content

Commit

Permalink
Fixing a typo in the previous commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Barkov committed Jul 3, 2015
1 parent fff30e2 commit 7ab7f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strings/ctype-utf8.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 7ab7f53

Please sign in to comment.