8000 Issue #16330: Fix compilation on Windows · python/cpython@b9e2d3f · GitHub
[go: up one dir, main page]

Skip to content

Commit b9e2d3f

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)
0