summaryrefslogtreecommitdiffstats
path: root/src/slv2_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-04 18:34:29 +0000
committerDavid Robillard <d@drobilla.net>2011-02-04 18:34:29 +0000
commitf7226f4a05b34429911dd15082fbe8d6a96eccf8 (patch)
tree9c971bfc779955302c8881b6cfc6c2fdbaa4dc0d /src/slv2_internal.h
parent4271de2ee1830bb73bcb96828a32303ee1f2ad18 (diff)
downloadlilv-f7226f4a05b34429911dd15082fbe8d6a96eccf8.tar.gz
lilv-f7226f4a05b34429911dd15082fbe8d6a96eccf8.tar.bz2
lilv-f7226f4a05b34429911dd15082fbe8d6a96eccf8.zip
SordTuple => SordQuad.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2910 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r--src/slv2_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h
index 2691c5d..45a38d2 100644
--- a/src/slv2_internal.h
+++ b/src/slv2_internal.h
@@ -54,14 +54,14 @@ typedef SordNode SLV2Node;
static inline SLV2Node
slv2_match_subject(SLV2Matches iter) {
- SordTuple tup;
+ SordQuad tup;
sord_iter_get(iter, tup);
return tup[SORD_SUBJECT];
}
static inline SLV2Node
slv2_match_object(SLV2Matches iter) {
- SordTuple tup;
+ SordQuad tup;
sord_iter_get(iter, tup);
return tup[SORD_OBJECT];
}