Commit 40ee861c authored by Mark Dickinson's avatar Mark Dickinson

Silence MSVC compiler warnings.

parent 0cfef2c3
......@@ -1413,8 +1413,9 @@ long_to_decimal_string(PyObject *aa, int addL)
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment