summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-wbmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdk-pixbuf/io-wbmp.c')
-rw-r--r--gdk-pixbuf/io-wbmp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdk-pixbuf/io-wbmp.c b/gdk-pixbuf/io-wbmp.c
index e961322f8..e86fab298 100644
--- a/gdk-pixbuf/io-wbmp.c
+++ b/gdk-pixbuf/io-wbmp.c
@@ -353,27 +353,27 @@ MODULE_ENTRY (fill_vtable) (GdkPixbufModule *module)
MODULE_ENTRY (fill_info) (GdkPixbufFormat *info)
{
- static GdkPixbufModulePattern signature[] = {
+ static const GdkPixbufModulePattern signature[] = {
{ " ", "zz", 1 },
{ " \140", "z ", 1 },
{ " \100", "z ", 1 },
{ " \040", "z ", 1 },
{ NULL, NULL, 0 }
};
- static gchar * mime_types[] = {
+ static const gchar *mime_types[] = {
"image/vnd.wap.wbmp",
NULL
};
- static gchar * extensions[] = {
+ static const gchar *extensions[] = {
"wbmp",
NULL
};
info->name = "wbmp";
- info->signature = signature;
+ info->signature = (GdkPixbufModulePattern *) signature;
info->description = N_("The WBMP 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";
}