mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-18 14:56:07 +00:00
Fix missing ->pseudos and speak the same boolean as the comment uses.
This commit is contained in:
parent
d7de8827ca
commit
1816ddb409
@ -33,7 +33,7 @@ CompareSelectors(const void *v1, const void *v2)
|
||||
/* if both have a psuedo, they have to match, else both must be NULL */
|
||||
(s1->pseudo && s2->pseudo ?
|
||||
XP_STRCMP(s1->pseudo, s2->pseudo) :
|
||||
!(s1 || s2));
|
||||
!s1->pseudo && !s2->pseudo);
|
||||
}
|
||||
|
||||
DOM_StyleDatabase *
|
||||
|
Loading…
x
Reference in New Issue
Block a user