Bug 792581 - part 19: Replace LL_I2L macro with int64_t cast. r=ehsan

This commit is contained in:
Andrew Quartey
2012-10-12 13:29:11 -04:00
parent 9ecb7a8dc1
commit 3c46b00d0f
17 changed files with 42 additions and 68 deletions

View File

@@ -287,7 +287,7 @@ static int cvt_ll(SprintfState *ss, int64_t num, int width, int prec,
** need to stop when we hit 10 digits. In the signed case, we can
** stop when the number is zero.
*/
LL_I2L(rad, radix);
rad = radix;
cvt = &cvtbuf[0] + ELEMENTS_OF(cvtbuf);
digits = 0;
while (num != 0) {