mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-03-05 06:41:51 +03:00
Fix warning
This commit is contained in:
parent
8557992979
commit
a84f2d2290
@ -104,8 +104,8 @@ static BOOL ami_openurl_check_list(struct MinList *list, nsurl *url)
|
||||
{
|
||||
nnode=(struct ami_protocol *)GetSucc((struct Node *)node);
|
||||
|
||||
if (lwc_string_isequal(url_scheme, node->protocol,
|
||||
&match) == NSERROR_OK && match == true) {
|
||||
if ((lwc_string_isequal(url_scheme, node->protocol,
|
||||
&match) == lwc_error_ok) && (match == true)) {
|
||||
lwc_string_unref(url_scheme);
|
||||
return TRUE;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user