From a12728f443694420b2d4e7a9307d738513cef24f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 18 Dec 2011 00:16:24 +0000 Subject: Fix broken lilv_resource_node_cmp (always equal) git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@3879 a436a847-0d15-0410-975c-d299462d15a1 --- src/collections.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/collections.c') diff --git a/src/collections.c b/src/collections.c index 77917f6..95542da 100644 --- a/src/collections.c +++ b/src/collections.c @@ -26,7 +26,7 @@ int lilv_resource_node_cmp(const void* a, const void* b, void* user_data) { const SordNode* an = ((LilvNode*)a)->val.uri_val; - const SordNode* bn = ((LilvNode*)a)->val.uri_val; + const SordNode* bn = ((LilvNode*)b)->val.uri_val; return (intptr_t)an - (intptr_t)bn; } -- cgit v1.2.1