[Python-checkins] r75588 - sandbox/trunk/decimal/decimal_in_c/deccoeffrepr.h

mark.dickinson python-checkins at python.org
Thu Oct 22 01:05:29 CEST 2009


Author: mark.dickinson
Date: Thu Oct 22 01:05:28 2009
New Revision: 75588

Log:
Fix typo

Modified:
   sandbox/trunk/decimal/decimal_in_c/deccoeffrepr.h

Modified: sandbox/trunk/decimal/decimal_in_c/deccoeffrepr.h
==============================================================================
--- sandbox/trunk/decimal/decimal_in_c/deccoeffrepr.h	(original)
+++ sandbox/trunk/decimal/decimal_in_c/deccoeffrepr.h	Thu Oct 22 01:05:28 2009
@@ -61,7 +61,7 @@
 typedef unsigned long double_limb_t;
 #if PYLONG_BITS_IN_DIGIT == 15
 typedef unsigned long digit_limb_t;
-#elif PYLONG_BIGS_IN_DIGIT == 30
+#elif PYLONG_BITS_IN_DIGIT == 30
 typedef PY_UINT64_T digit_limb_t;
 #endif
 #define LIMB_MAX ((limb_t)9999) /* 10**LIMB_DIGITS - 1 */


More information about the Python-checkins mailing list