summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-pcx.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2013-12-18 22:55:15 -0500
committerMatthias Clasen <mclasen@redhat.com>2013-12-18 22:55:15 -0500
commitf9c233bdbc04abb41921bf11171c79556b8f139b (patch)
tree3798b0644c19bf955f23a46118e707664e5e0e76 /gdk-pixbuf/io-pcx.c
parent1a3a44ee9766c7f3e81135619ec1ab848c36371f (diff)
downloadgdk-pixbuf-f9c233bdbc04abb41921bf11171c79556b8f139b.tar.gz
Make some string data const
https://bugzilla.gnome.org/show_bug.cgi?id=144042
Diffstat (limited to 'gdk-pixbuf/io-pcx.c')
-rw-r--r--gdk-pixbuf/io-pcx.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdk-pixbuf/io-pcx.c b/gdk-pixbuf/io-pcx.c
index b658f5828..86419aea9 100644
--- a/gdk-pixbuf/io-pcx.c
+++ b/gdk-pixbuf/io-pcx.c
@@ -733,7 +733,7 @@ MODULE_ENTRY (fill_vtable) (GdkPixbufModule *module)
MODULE_ENTRY (fill_info) (GdkPixbufFormat *info)
{
- static GdkPixbufModulePattern signature[] = {
+ static const GdkPixbufModulePattern signature[] = {
{ "\x0a \x01", NULL, 100 },
{ "\x0a\x02\x01", NULL, 100 },
{ "\x0a\x03\x01", NULL, 100 },
@@ -741,20 +741,20 @@ MODULE_ENTRY (fill_info) (GdkPixbufFormat *info)
{ "\x0a\x05\x01", NULL, 100 },
{ NULL, NULL, 0 }
};
- static gchar *mime_types[] = {
+ static const gchar *mime_types[] = {
"image/x-pcx",
NULL,
};
- static gchar *extensions[] = {
+ static const gchar *extensions[] = {
"pcx",
NULL,
};
info->name = "pcx";
- info->signature = signature;
+ info->signature = (GdkPixbufModulePattern *) signature;
info->description = N_("The PCX image format");
- info->mime_types = mime_types;
- info->extensions = extensions;
+ info->mime_types = (gchar **) mime_types;
+ info->extensions = (gchar **) extensions;
info->flags = GDK_PIXBUF_FORMAT_THREADSAFE;
info->license = "LGPL";
}