summaryrefslogtreecommitdiff
path: root/sys/vcd
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2010-03-22 13:16:33 +0100
committerBenjamin Otte <otte@redhat.com>2010-03-22 13:16:33 +0100
commit33c2f5fb01b1cb9145751a745cfa2514421fa7b3 (patch)
treef8c0318f6d50928ee96ed1e8663a0c0c5fce7d3e /sys/vcd
parent010789159d7bf274e11f0b4bec5c66543ad1220f (diff)
downloadgstreamer-plugins-bad-33c2f5fb01b1cb9145751a745cfa2514421fa7b3.tar.gz
Add -Wwrite-strings
and fix its warnings
Diffstat (limited to 'sys/vcd')
-rw-r--r--sys/vcd/vcdsrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vcd/vcdsrc.c b/sys/vcd/vcdsrc.c
index 938b1b19e..fa6f0439c 100644
--- a/sys/vcd/vcdsrc.c
+++ b/sys/vcd/vcdsrc.c
@@ -458,7 +458,7 @@ gst_vcdsrc_uri_get_type (void)
static gchar **
gst_vcdsrc_uri_get_protocols (void)
{
- static gchar *protocols[] = { "vcd", NULL };
+ static gchar *protocols[] = { (char *) "vcd", NULL };
return protocols;
}