summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-ani.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdk-pixbuf/io-ani.c')
-rw-r--r--gdk-pixbuf/io-ani.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdk-pixbuf/io-ani.c b/gdk-pixbuf/io-ani.c
index a5eeccdbf..72f2d0e52 100644
--- a/gdk-pixbuf/io-ani.c
+++ b/gdk-pixbuf/io-ani.c
@@ -653,24 +653,24 @@ MODULE_ENTRY (fill_vtable) (GdkPixbufModule *module)
MODULE_ENTRY (fill_info) (GdkPixbufFormat *info)
{
- static GdkPixbufModulePattern signature[] = {
+ static const GdkPixbufModulePattern signature[] = {
{ "RIFF ACON", " xxxx ", 100 },
{ NULL, NULL, 0 }
};
- static gchar * mime_types[] = {
+ static const gchar * mime_types[] = {
"application/x-navi-animation",
NULL
};
- static gchar * extensions[] = {
+ static const gchar * extensions[] = {
"ani",
NULL
};
info->name = "ani";
- info->signature = signature;
+ info->signature = (GdkPixbufModulePattern *) signature;
info->description = N_("The ANI 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";
}