diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-11-13 23:55:56 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-11-13 23:55:56 +0000 |
commit | 357d7bdfed98d7ee7f8e63a94b2359a8bf517e13 (patch) | |
tree | be8240279a2f1e09b92281c3c5e82de824245f75 /ext/resindvd | |
parent | 7b80e0773fb6759e8d71a535bb3c6c14106c8e66 (diff) | |
download | gstreamer-plugins-bad-357d7bdfed98d7ee7f8e63a94b2359a8bf517e13.tar.gz |
Update for GstURIHandler get_protocols() changes
Diffstat (limited to 'ext/resindvd')
-rw-r--r-- | ext/resindvd/resindvdbin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/resindvd/resindvdbin.c b/ext/resindvd/resindvdbin.c index 537adadeb..5885b238a 100644 --- a/ext/resindvd/resindvdbin.c +++ b/ext/resindvd/resindvdbin.c @@ -170,10 +170,10 @@ rsn_dvdbin_uri_get_type (void) return GST_URI_SRC; } -static gchar ** +static const gchar *const * rsn_dvdbin_uri_get_protocols (void) { - static gchar *protocols[] = { (char *) "dvd", NULL }; + static const gchar *protocols[] = { "dvd", NULL }; return protocols; } |