]> granicus.if.org Git - python/commitdiff
Merged revisions 70499 via svnmerge from
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>
Sat, 21 Mar 2009 13:23:27 +0000 (13:23 +0000)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>
Sat, 21 Mar 2009 13:23:27 +0000 (13:23 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r70499 | hirokazu.yamamoto | 2009-03-21 19:32:52 +0900 | 1 line

  There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead.
........

Objects/unicodeobject.c

index 03c65e34b6ea450b6131a0479efaee78a592dc41..bcae239b6addc8af72ee12c2bbe35cd3cf358eed 100644 (file)
@@ -4217,7 +4217,7 @@ PyObject *PyUnicode_AsASCIIString(PyObject *unicode)
 
 /* --- MBCS codecs for Windows -------------------------------------------- */
 
-#if SIZEOF_INT < SIZEOF_SSIZE_T
+#if SIZEOF_INT < SIZEOF_SIZE_T
 #define NEED_RETRY
 #endif