From a84f2d22906019af40658333f2246b8b80940715 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sun, 9 Nov 2014 19:56:29 +0000 Subject: Fix warning --- amiga/launch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga/launch.c') diff --git a/amiga/launch.c b/amiga/launch.c index 072ba6883..c3f993b28 100755 --- a/amiga/launch.c +++ b/amiga/launch.c @@ -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; } -- cgit v1.2.3