mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-20 06:08:14 +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 */
|
/* get the rdf:type for this plugin */
|
||||||
query.subject = uri;
|
query.subject = uri;
|
||||||
query.predicate = RDF_BASE "type";
|
query.predicate = (char *) RDF_BASE "type";
|
||||||
query.object = "?";
|
query.object = (char *) "?";
|
||||||
query.next = NULL;
|
query.next = NULL;
|
||||||
uris = lrdf_match_multi (&query);
|
uris = lrdf_match_multi (&query);
|
||||||
if (uris) {
|
if (uris) {
|
||||||
|
|
Loading…
Reference in a new issue