mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 12:10:37 +00:00
ladspa: Fix compiler warnings
This commit is contained in:
parent
8144fee47c
commit
bd5ef2d21d
1 changed files with 2 additions and 2 deletions
|
@ -167,8 +167,8 @@ gst_ladspa_base_init (gpointer g_class)
|
|||
|
||||
/* get the rdf:type for this plugin */
|
||||
query.subject = uri;
|
||||
query.predicate = RDF_BASE "type";
|
||||
query.object = "?";
|
||||
query.predicate = (char *) RDF_BASE "type";
|
||||
query.object = (char *) "?";
|
||||
query.next = NULL;
|
||||
uris = lrdf_match_multi (&query);
|
||||
if (uris) {
|
||||
|
|
Loading…
Reference in a new issue