summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-21 13:04:41 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-21 13:04:41 (GMT)
commit68e075e59c6f753063bdd35b6a3b1e9f47080846 (patch)
tree6c3987244d7054659097a1e3d47f1b45e41461c6 /Objects
parentb47fac4329347f83c4b3c28914114659aeffbcd7 (diff)
downloadcpython-68e075e59c6f753063bdd35b6a3b1e9f47080846.zip
cpython-68e075e59c6f753063bdd35b6a3b1e9f47080846.tar.gz
cpython-68e075e59c6f753063bdd35b6a3b1e9f47080846.tar.bz2
Merged revisions 70499 via svnmerge from
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. ........
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 06e17e6..72bfb83 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -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