summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-21 10:32:52 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-21 10:32:52 (GMT)
commit52a3492efbabb78782683db51d63af7e0d7c91ba (patch)
tree8415671ea5a70993507b6bc6589de0202d9779a3 /Objects
parentf35f8044e4c2679d4d701fb464be7541a9f33e6d (diff)
downloadcpython-52a3492efbabb78782683db51d63af7e0d7c91ba.zip
cpython-52a3492efbabb78782683db51d63af7e0d7c91ba.tar.gz
cpython-52a3492efbabb78782683db51d63af7e0d7c91ba.tar.bz2
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 079eebf..107ed29 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -3795,7 +3795,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