From bd5ef2d21da0f35e455f0c9ea4c3dd80db13af16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 22 Mar 2010 13:50:30 +0100 Subject: [PATCH] ladspa: Fix compiler warnings --- ext/ladspa/gstladspa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c index 6537c7ca76..0c8f5e0108 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) {