[Python-checkins] r70499 - python/trunk/Objects/unicodeobject.c

hirokazu.yamamoto python-checkins at python.org
Sat Mar 21 11:32:53 CET 2009


Author: hirokazu.yamamoto
Date: Sat Mar 21 11:32:52 2009
New Revision: 70499

Log:
There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead.

Modified:
   python/trunk/Objects/unicodeobject.c

Modified: python/trunk/Objects/unicodeobject.c
==============================================================================
--- python/trunk/Objects/unicodeobject.c	(original)
+++ python/trunk/Objects/unicodeobject.c	Sat Mar 21 11:32:52 2009
@@ -3795,7 +3795,7 @@
 
 /* --- MBCS codecs for Windows -------------------------------------------- */
 
-#if SIZEOF_INT < SIZEOF_SSIZE_T
+#if SIZEOF_INT < SIZEOF_SIZE_T
 #define NEED_RETRY
 #endif
 


More information about the Python-checkins mailing list