summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Penquerc'h <vincent.penquerch@collabora.co.uk>2012-01-27 11:32:12 +0000
committerVincent Penquerc'h <vincent.penquerch@collabora.co.uk>2012-01-27 11:32:12 +0000
commit68a091303fcd8f3f6dcb3c9c39d1ac3678a9bf93 (patch)
tree4ce92dfd1544d0a1a6c8e7844057e34c3e6fc21c
parente1dbab9bea550f4f61c792ed92acc3bd687d43d7 (diff)
gstplugin: add a few consts to read only data
-rw-r--r--gst/gstplugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstplugin.c b/gst/gstplugin.c
index 02e5cc959e..693bc0f085 100644
--- a/gst/gstplugin.c
+++ b/gst/gstplugin.c
@@ -90,7 +90,7 @@ static char *_gst_plugin_fault_handler_filename = NULL;
* MIT/X11: http://www.opensource.org/licenses/mit-license.php
* 3-clause BSD: http://www.opensource.org/licenses/bsd-license.php
*/
-static const gchar *valid_licenses[] = {
+static const gchar *const valid_licenses[] = {
"LGPL", /* GNU Lesser General Public License */
"GPL", /* GNU General Public License */
"QPL", /* Trolltech Qt Public License */
@@ -487,7 +487,7 @@ priv_gst_plugin_loading_get_whitelist_hash (void)
static gboolean
gst_plugin_check_license (const gchar * license)
{
- const gchar **check_license = valid_licenses;
+ const gchar *const *check_license = valid_licenses;
g_assert (check_license);