mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
[libcss] No warning
This commit is contained in:
parent
4ffa019038
commit
cdb37b743d
@ -860,13 +860,10 @@ css_error node_has_class(void *pw, void *node,
|
|||||||
lwc_string *name, bool *match)
|
lwc_string *name, bool *match)
|
||||||
{
|
{
|
||||||
dom_node *n = node;
|
dom_node *n = node;
|
||||||
dom_exception err;
|
|
||||||
|
|
||||||
/** \todo: Ensure that libdom performs case-insensitive
|
/** \todo: Ensure that libdom performs case-insensitive
|
||||||
* matching in quirks mode */
|
* matching in quirks mode */
|
||||||
err = dom_element_has_class(n, name, match);
|
(void)dom_element_has_class(n, name, match);
|
||||||
|
|
||||||
assert(err == DOM_NO_ERR);
|
|
||||||
|
|
||||||
return CSS_OK;
|
return CSS_OK;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user