Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b9e2d3f

Browse files
committed
Issue #16330: Fix compilation on Windows
1 parent 266f882 commit b9e2d3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/cjkcodecs/cjkcodecs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ static const struct dbcs_map *mapping_list;
191191
if (Py_UNICODE_IS_HIGH_SURROGATE(c)) { \
192192
REQUIRE_INBUF(2) \
193193
if (Py_UNICODE_IS_LOW_SURROGATE(IN2)) { \
194-
c = Py_UNICODE_JOIN_SURROGATES(c, IN2) \
194+
c = Py_UNICODE_JOIN_SURROGATES(c, IN2); \
195195
} \
196196
}
197197
#define GET_INSIZE(c) ((c) > 0xffff ? 2 : 1)

0 commit comments

Comments
 (0)