From 52a3492efbabb78782683db51d63af7e0d7c91ba Mon Sep 17 00:00:00 2001 From: Hirokazu Yamamoto Date: Sat, 21 Mar 2009 10:32:52 +0000 Subject: [PATCH] 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 079eebf2a7..107ed29565 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 -- 2.50.1