From c43c456d0505c2b9ee117bf1f5f40fb9be36f1a1 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 4 Jan 2014 16:26:02 +0000 Subject: Use dom_string_isequal, not lwc_string_isequal, for dom strings. --- css/select.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'css') diff --git a/css/select.c b/css/select.c index ee0e7dacd..0202737b8 100644 --- a/css/select.c +++ b/css/select.c @@ -219,11 +219,9 @@ static void nscss_dom_user_data_handler(dom_node_operation operation, struct dom_node *dst) { css_error error; - bool match; - if (lwc_string_isequal(corestring_dom___ns_key_libcss_node_data, - key, &match) != lwc_error_ok || match == false || - data == NULL) { + if (dom_string_isequal(corestring_dom___ns_key_libcss_node_data, + key) == false || data == NULL) { return; } -- cgit v1.2.3