Bug 792581 - part 8: Replace LL_NEG macro with negation. r=ehsan

This commit is contained in:
Andrew Quartey 2012-10-05 01:05:27 -04:00
parent cd55ab6dce
commit 6d4a3feed8

View File

@ -1021,7 +1021,7 @@ static int dosprintf(SprintfState *ss, const PRUnichar *fmt, va_list ap)
case TYPE_INT64:
u.ll = va_arg(ap, int64_t);
if (u.ll < 0) {
LL_NEG(u.ll, u.ll);
u.ll = -u.ll;
flags |= _NEG;
}
goto do_longlong;