diff options
author | Benjamin Otte <otte@redhat.com> | 2010-03-22 13:16:33 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-03-22 13:16:33 +0100 |
commit | 33c2f5fb01b1cb9145751a745cfa2514421fa7b3 (patch) | |
tree | f8c0318f6d50928ee96ed1e8663a0c0c5fce7d3e /ext/cdaudio | |
parent | 010789159d7bf274e11f0b4bec5c66543ad1220f (diff) |
Add -Wwrite-strings
and fix its warnings
Diffstat (limited to 'ext/cdaudio')
-rw-r--r-- | ext/cdaudio/gstcdaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/cdaudio/gstcdaudio.c b/ext/cdaudio/gstcdaudio.c index 4eb113f02..6e1dc4e06 100644 --- a/ext/cdaudio/gstcdaudio.c +++ b/ext/cdaudio/gstcdaudio.c @@ -589,7 +589,7 @@ cdaudio_uri_get_type (void) static gchar ** cdaudio_uri_get_protocols (void) { - static gchar *protocols[] = { "cd", NULL }; + static gchar *protocols[] = { (char *) "cd", NULL }; return protocols; } |