mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Fix style nits from bug 440926, no_r=me
This commit is contained in:
parent
a4bcebed1c
commit
a4022f7c34
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user