From 741984dc1771519be367bde5aa3a7655366bed98 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Mon, 21 Sep 2009 16:18:27 +0000 Subject: Merged revisions 75003 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75003 | mark.dickinson | 2009-09-21 17:16:44 +0100 (Mon, 21 Sep 2009) | 1 line Silence MSVC compiler warnings. ........ --- Objects/longobject.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Objects/longobject.c b/Objects/longobject.c index e56602e..f7df699 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -1702,8 +1702,9 @@ long_to_decimal_string(PyObject *aa) digit hi = pin[i]; for (j = 0; j < size; j++) { twodigits z = (twodigits)pout[j] << PyLong_SHIFT | hi; - hi = z / _PyLong_DECIMAL_BASE; - pout[j] = z - (twodigits)hi * _PyLong_DECIMAL_BASE; + hi = (digit)(z / _PyLong_DECIMAL_BASE); + pout[j] = (digit)(z - (twodigits)hi * + _PyLong_DECIMAL_BASE); } while (hi) { pout[size++] = hi % _PyLong_DECIMAL_BASE; -- cgit v0.12