Silence MSVC compiler warnings.
diff --git a/Objects/longobject.c b/Objects/longobject.c
index 23d2f13..d284b4f 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -1413,8 +1413,9 @@
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;