From 68e075e59c6f753063bdd35b6a3b1e9f47080846 Mon Sep 17 00:00:00 2001 From: Hirokazu Yamamoto Date: Sat, 21 Mar 2009 13:04:41 +0000 Subject: [PATCH] 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. ........ --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 06e17e69f84..72bfb8373a7 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