summaryrefslogtreecommitdiff
path: root/utils/nsurl.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-09-26 14:57:45 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-09-26 14:57:45 +0000
commit75d61bca44e57c9dd97c0f2b96952298fdeff71e (patch)
tree159914f69bebf67d5f9a7cf1752c94411eb633a2 /utils/nsurl.h
parent212358278c337fc30c45670db358f21ed8054e68 (diff)
downloadnetsurf-75d61bca44e57c9dd97c0f2b96952298fdeff71e.tar.gz
netsurf-75d61bca44e57c9dd97c0f2b96952298fdeff71e.tar.bz2
Simply return bool from nsurl_compare.
svn path=/trunk/netsurf/; revision=12889
Diffstat (limited to 'utils/nsurl.h')
-rw-r--r--utils/nsurl.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/nsurl.h b/utils/nsurl.h
index 6a5725aa9..23dd3f251 100644
--- a/utils/nsurl.h
+++ b/utils/nsurl.h
@@ -94,8 +94,7 @@ void nsurl_unref(nsurl *url);
*
* If return value != NSERROR_OK, match will be false.
*/
-nserror nsurl_compare(const nsurl *url1, const nsurl *url2,
- nsurl_component parts, bool *match);
+bool nsurl_compare(const nsurl *url1, const nsurl *url2, nsurl_component parts);
/**