_PyLong_FromByteArray: changed decl of "carry" to match "thisbyte". No
semantic change, but a bit clearer and may help a really stupid compiler
avoid pointless runtime length conversions.
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 44819701..93044ee 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -278,7 +278,7 @@
8-bit bytes and (probably) 15-bit Python digits.*/
{
size_t i;
- unsigned int carry = 1; /* for 2's-comp calculation */
+ twodigits carry = 1; /* for 2's-comp calculation */
twodigits accum = 0; /* sliding register */
unsigned int accumbits = 0; /* number of bits in accum */
const unsigned char* p = pstartbyte;