From: Hirokazu Yamamoto Date: Sat, 21 Mar 2009 10:32:52 +0000 (+0000) Subject: There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead. X-Git-Tag: v2.7a1~1827 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52a3492efbabb78782683db51d63af7e0d7c91ba;p=thirdparty%2FPython%2Fcpython.git There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead. --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 079eebf2a7a5..107ed295656e 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