diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2012-10-30 01:30:31 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2012-10-30 01:30:31 (GMT) |
| commit | b9e2d3f884fdb7a7c35e15c2093a84b0fa9ea53e (patch) | |
| tree | 08279e41e9a2ade90e8aa2c68c9e830503097666 | |
| parent | 266f882dcae093e40d1d3a6611d616559c3ebeaf (diff) | |
| download | cpython-b9e2d3f884fdb7a7c35e15c2093a84b0fa9ea53e.zip cpython-b9e2d3f884fdb7a7c35e15c2093a84b0fa9ea53e.tar.gz cpython-b9e2d3f884fdb7a7c35e15c2093a84b0fa9ea53e.tar.bz2 | |
Issue #16330: Fix compilation on Windows
| -rw-r--r-- | Modules/cjkcodecs/cjkcodecs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cjkcodecs/cjkcodecs.h b/Modules/cjkcodecs/cjkcodecs.h index fb41bdd..3a00d41 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) |
