summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-gif.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-gif.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-gif.c')
-rw-r--r--gdk-pixbuf/io-gif.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdk-pixbuf/io-gif.c b/gdk-pixbuf/io-gif.c
index a943f4e0a..011a6cae5 100644
--- a/gdk-pixbuf/io-gif.c
+++ b/gdk-pixbuf/io-gif.c
@@ -1702,24 +1702,24 @@ MODULE_ENTRY (fill_vtable) (GdkPixbufModule *module)
MODULE_ENTRY (fill_info) (GdkPixbufFormat *info)
{
- static GdkPixbufModulePattern signature[] = {
+ static const GdkPixbufModulePattern signature[] = {
{ "GIF8", NULL, 100 },
{ NULL, NULL, 0 }
};
- static gchar * mime_types[] = {
+ static const gchar *mime_types[] = {
"image/gif",
NULL
};
- static gchar * extensions[] = {
+ static const gchar *extensions[] = {
"gif",
NULL
};
info->name = "gif";
- info->signature = signature;
+ info->signature = (GdkPixbufModulePattern *) signature;
info->description = N_("The GIF 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";
}