diff options
Diffstat (limited to 'src/collections.c')
-rw-r--r-- | src/collections.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/collections.c b/src/collections.c index dd676e6..f7a035a 100644 --- a/src/collections.c +++ b/src/collections.c @@ -25,8 +25,8 @@ lilv_ptr_cmp(const void* a, const void* b, void* user_data) int lilv_resource_node_cmp(const void* a, const void* b, void* user_data) { - const SordNode* an = ((const LilvNode*)a)->val.uri_val; - const SordNode* bn = ((const LilvNode*)b)->val.uri_val; + const SordNode* an = ((const LilvNode*)a)->node; + const SordNode* bn = ((const LilvNode*)b)->node; return (intptr_t)an - (intptr_t)bn; } |