1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00

[libcss] No warning

This commit is contained in:
Witold Filipczyk 2023-05-30 15:24:47 +02:00
parent 4ffa019038
commit cdb37b743d

View File

@ -860,13 +860,10 @@ css_error node_has_class(void *pw, void *node,
lwc_string *name, bool *match)
{
dom_node *n = node;
dom_exception err;
/** \todo: Ensure that libdom performs case-insensitive
* matching in quirks mode */
err = dom_element_has_class(n, name, match);
assert(err == DOM_NO_ERR);
(void)dom_element_has_class(n, name, match);
return CSS_OK;
}