From: Victor Stinner Date: Tue, 30 Oct 2012 01:30:31 +0000 (+0100) Subject: Issue #16330: Fix compilation on Windows X-Git-Tag: v3.4.0a1~2142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b9e2d3f884fdb7a7c35e15c2093a84b0fa9ea53e;p=thirdparty%2FPython%2Fcpython.git Issue #16330: Fix compilation on Windows --- diff --git a/Modules/cjkcodecs/cjkcodecs.h b/Modules/cjkcodecs/cjkcodecs.h index fb41bdd55098..3a00d4144624 100644 --- a/Modules/cjkcodecs/cjkcodecs.h +++ b/Modules/cjkcodecs/cjkcodecs.h @@ -191,7 +191,7 @@ static const struct dbcs_map *mapping_list; if (Py_UNICODE_IS_HIGH_SURROGATE(c)) { \ REQUIRE_INBUF(2) \ if (Py_UNICODE_IS_LOW_SURROGATE(IN2)) { \ - c = Py_UNICODE_JOIN_SURROGATES(c, IN2) \ + c = Py_UNICODE_JOIN_SURROGATES(c, IN2); \ } \ } #define GET_INSIZE(c) ((c) > 0xffff ? 2 : 1)