summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/string.c b/src/core/string.c
index 7255241..0c82d4e 100644
--- a/src/core/string.c
+++ b/src/core/string.c
@@ -331,7 +331,7 @@ bool dom_string_lwc_isequal(const dom_string *s1, lwc_string *s2)
if (s1->type == DOM_STRING_INTERNED) {
bool match;
- lwc_string_isequal(s1->data.intern, s2, &match);
+ (void) lwc_string_isequal(s1->data.intern, s2, &match);
return match;
}