Bug 792581 - part 4: Replace LL_GE_ZERO macro with standard relation. r=ehsan

This commit is contained in:
Andrew Quartey
2012-10-03 10:13:19 -04:00
parent 381dac2667
commit 4bf792ece7
3 changed files with 3 additions and 3 deletions

View File

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