summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-pixdata.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdk-pixbuf/io-pixdata.c')
-rw-r--r--gdk-pixbuf/io-pixdata.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdk-pixbuf/io-pixdata.c b/gdk-pixbuf/io-pixdata.c
index 08ae20b47..f55009122 100644
--- a/gdk-pixbuf/io-pixdata.c
+++ b/gdk-pixbuf/io-pixdata.c
@@ -168,24 +168,24 @@ MODULE_ENTRY (fill_vtable) (GdkPixbufModule * module)
MODULE_ENTRY (fill_info) (GdkPixbufFormat * info)
{
- static GdkPixbufModulePattern signature[] = {
+ static const GdkPixbufModulePattern signature[] = {
{ "GdkP", NULL, 100 }, /* file begins with 'GdkP' at offset 0 */
{ NULL, NULL, 0 }
};
- static gchar *mime_types[] = {
+ static const gchar *mime_types[] = {
"image/x-gdkpixdata",
NULL
};
- static gchar *extensions[] = {
+ static const gchar *extensions[] = {
"gdkp",
NULL
};
info->name = "GdkPixdata";
- info->signature = signature;
+ info->signature = (GdkPixbufModulePattern *) signature;
info->description = N_("The GdkPixdata 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";
info->disabled = FALSE;