summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-31 01:37:07 +0000
committerDavid Robillard <d@drobilla.net>2011-01-31 01:37:07 +0000
commitd5ad97feaff9bcb767d579c71451440a71b1464a (patch)
tree975add5b4e953c58eeee7bdaef2f7195ff90f839 /src
parent15f9b09510615f1732e7eb043ac587673b4edc4a (diff)
downloadlilv-d5ad97feaff9bcb767d579c71451440a71b1464a.tar.gz
lilv-d5ad97feaff9bcb767d579c71451440a71b1464a.tar.bz2
lilv-d5ad97feaff9bcb767d579c71451440a71b1464a.zip
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2883 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/query.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/query.c b/src/query.c
index e7f6565..e9121e3 100644
--- a/src/query.c
+++ b/src/query.c
@@ -38,9 +38,9 @@ slv2_plugin_find_statements(SLV2Plugin plugin,
slv2_plugin_load_if_necessary(plugin);
librdf_statement* q = librdf_new_statement_from_nodes(
plugin->world->world,
- subject ? librdf_new_node_from_node(subject) : NULL,
+ subject ? librdf_new_node_from_node(subject) : NULL,
predicate ? librdf_new_node_from_node(predicate) : NULL,
- object ? librdf_new_node_from_node(object) : NULL);
+ object ? librdf_new_node_from_node(object) : NULL);
librdf_stream* results = librdf_model_find_statements(plugin->rdf, q);
librdf_free_statement(q);
return results;