[Python-checkins] r75949 - sandbox/trunk/decimal/decimal_in_c/deccoeff.c

mark.dickinson python-checkins at python.org
Thu Oct 29 13:52:52 CET 2009


Author: mark.dickinson
Date: Thu Oct 29 13:52:51 2009
New Revision: 75949

Log:
Fix typo in assert

Modified:
   sandbox/trunk/decimal/decimal_in_c/deccoeff.c

Modified: sandbox/trunk/decimal/decimal_in_c/deccoeff.c
==============================================================================
--- sandbox/trunk/decimal/decimal_in_c/deccoeff.c	(original)
+++ sandbox/trunk/decimal/decimal_in_c/deccoeff.c	Thu Oct 29 13:52:51 2009
@@ -633,7 +633,7 @@
         carry = limbs_sub(aa, aa, rem, b_size);
         carry = limb_adc(&top, top, LIMB_ZERO, carry);
         assert(!carry);
-        assert(atop <= top);
+        assert(a_top <= top);
         /* correct if necessary */
         while (a_top < top) {
             carry = limbs_add(aa, aa, bb, b_size);


More information about the Python-checkins mailing list