diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-03-22 13:50:30 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-03-22 13:50:30 +0100 |
commit | bd5ef2d21da0f35e455f0c9ea4c3dd80db13af16 (patch) | |
tree | 3e074f088d75efeecb5d27dee7f36908cbb90c42 /ext/ladspa | |
parent | 8144fee47cc311ed3e5f437a9bcd0d96a19b58e8 (diff) | |
download | gstreamer-plugins-bad-bd5ef2d21da0f35e455f0c9ea4c3dd80db13af16.tar.gz |
ladspa: Fix compiler warnings
Diffstat (limited to 'ext/ladspa')
-rw-r--r-- | ext/ladspa/gstladspa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c index 6537c7ca7..0c8f5e010 100644 --- a/ext/ladspa/gstladspa.c +++ b/ext/ladspa/gstladspa.c @@ -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) { |