r13673 rjek - /trunk/libdom/src/core/string.c
netsurf at semichrome.net
netsurf at semichrome.net
Sun Mar 25 12:00:42 BST 2012
Author: rjek
Date: Sun Mar 25 06:00:41 2012
New Revision: 13673
URL: http://source.netsurf-browser.org?rev=13673&view=rev
Log:
clang compatibility.
Modified:
trunk/libdom/src/core/string.c
Modified: trunk/libdom/src/core/string.c
URL: http://source.netsurf-browser.org/trunk/libdom/src/core/string.c?rev=13673&r1=13672&r2=13673&view=diff
==============================================================================
--- trunk/libdom/src/core/string.c (original)
+++ trunk/libdom/src/core/string.c Sun Mar 25 06:00:41 2012
@@ -331,7 +331,7 @@
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;
}
More information about the netsurf-commits
mailing list