[Python-checkins] cpython: Issue #16330: Fix compilation on Windows

victor.stinner python-checkins at python.org
Tue Oct 30 02:30:33 CET 2012


http://hg.python.org/cpython/rev/812f5c379188
changeset:   80060:812f5c379188
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Oct 30 02:30:31 2012 +0100
summary:
  Issue #16330: Fix compilation on Windows

files:
  Modules/cjkcodecs/cjkcodecs.h |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/cjkcodecs/cjkcodecs.h b/Modules/cjkcodecs/cjkcodecs.h
--- a/Modules/cjkcodecs/cjkcodecs.h
+++ b/Modules/cjkcodecs/cjkcodecs.h
@@ -191,7 +191,7 @@
     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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list