From 1e2d8700d6707c22ab101b271df89ca4f12b1b22 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 25 Jan 2009 22:25:06 +0000 Subject: [PATCH] Merged revisions 68947 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r68947 | mark.dickinson | 2009-01-25 22:12:31 +0000 (Sun, 25 Jan 2009) | 3 lines No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large enough. This change should silence a compiler warning on Windows. ........ --- Objects/longobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/longobject.c b/Objects/longobject.c index 7a3be9ecdd..0493dbc3e7 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -776,7 +776,7 @@ _PyLong_AsByteArray(PyLongObject* v, twodigits accum; /* sliding register */ unsigned int accumbits; /* # bits in accum */ int do_twos_comp; /* store 2's-comp? is_signed and v < 0 */ - twodigits carry; /* for computing 2's-comp */ + digit carry; /* for computing 2's-comp */ size_t j; /* # bytes filled */ unsigned char* p; /* pointer to next byte in bytes */ int pincr; /* direction to move p */ -- 2.50.1