Fix style nits from bug 440926, no_r=me

This commit is contained in:
David Mandelin 2009-12-23 18:56:50 -08:00
parent a4bcebed1c
commit a4022f7c34

View File

@ -382,8 +382,8 @@ upcase(uintN ch)
*/
static inline jschar inverse_upcase(jschar ch)
{
jschar lch = JS_TOLOWER(ch);
return upcase(lch) == ch ? lch : ch;
jschar lch = JS_TOLOWER(ch);
return (upcase(lch) == ch) ? lch : ch;
}
/* Construct and initialize an RENode, returning NULL for out-of-memory */