]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 70499 via svnmerge from
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>
Sat, 21 Mar 2009 13:04:41 +0000 (13:04 +0000)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>
Sat, 21 Mar 2009 13:04:41 +0000 (13:04 +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 06e17e69f84b37f44fb3f2e4a042907348a44549..72bfb8373a7d973403ff3c061948490913f5ca9f 100644 (file)
@@ -3737,7 +3737,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