summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/string.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/string.c b/src/core/string.c
index 8405c27..9072d59 100644
--- a/src/core/string.c
+++ b/src/core/string.c
@@ -237,7 +237,8 @@ bool dom_string_isequal(const dom_string *s1, const dom_string *s2)
s2->type == DOM_STRING_INTERNED) {
bool match;
- lwc_string_isequal(s1->data.intern, s2->data.intern, &match);
+ (void) lwc_string_isequal(s1->data.intern, s2->data.intern,
+ &match);
return match;
}