summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/gdk-pixbuf-io.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@redhat.com>1999-12-06 18:57:03 +0000
committerArturo Espinosa <unammx@src.gnome.org>1999-12-06 18:57:03 +0000
commite506cf37cb3b693ea9a0dd118aa30bde98d5f36d (patch)
treee97ed452a1e858a3f9284d1196a8e6853020032b /gdk-pixbuf/gdk-pixbuf-io.c
parent8a02827e39a4ab64c168f52fcef251569943a1ee (diff)
downloadgtk+-e506cf37cb3b693ea9a0dd118aa30bde98d5f36d.tar.gz
Patch from Arjan to fix an initializer.
1999-12-06 Federico Mena Quintero <federico@redhat.com> * gdk-pixbuf/gdk-pixbuf-io.c (file_formats): Patch from Arjan to fix an initializer.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-io.c')
-rw-r--r--gdk-pixbuf/gdk-pixbuf-io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c
index ad311401d0..c30aae958a 100644
--- a/gdk-pixbuf/gdk-pixbuf-io.c
+++ b/gdk-pixbuf/gdk-pixbuf-io.c
@@ -178,7 +178,7 @@ GdkPixbufModule file_formats [] = {
{ "ras", pixbuf_check_sunras, NULL, NULL, NULL, NULL, NULL, NULL },
{ "ico", pixbuf_check_ico, NULL, NULL, NULL, NULL, NULL, NULL },
{ "bmp", pixbuf_check_bmp, NULL, NULL, NULL, NULL, NULL, NULL },
- { NULL, NULL, NULL, NULL, NULL, NULL, NULL }
+ { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
};