diff options
author | Matthias Clasen <maclas@gmx.de> | 2003-03-21 00:13:17 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-03-21 00:13:17 +0000 |
commit | b6d19fe20739a866ad82f35d37b5e3c16b035f7d (patch) | |
tree | 66fdd16169e26eaa8d10262611c7d0e3b295fee9 /gdk-pixbuf/io-ico.c | |
parent | 6b76b0cc9bf370ccdecf44529db5a17cbf7a54ab (diff) | |
download | gtk+-b6d19fe20739a866ad82f35d37b5e3c16b035f7d.tar.gz |
Add missing static qualifiers apparently causing problems on some
2003-03-21 Matthias Clasen <maclas@gmx.de>
* io-jpeg.c (gdk_pixbuf__jpeg_image_begin_load):
* io-ico.c (gdk_pixbuf__ico_image_stop_load): Add missing static
qualifiers apparently causing problems on some platforms. (#108617)
Diffstat (limited to 'gdk-pixbuf/io-ico.c')
-rw-r--r-- | gdk-pixbuf/io-ico.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdk-pixbuf/io-ico.c b/gdk-pixbuf/io-ico.c index a83fce83c0..4fdb9bae73 100644 --- a/gdk-pixbuf/io-ico.c +++ b/gdk-pixbuf/io-ico.c @@ -491,8 +491,9 @@ gdk_pixbuf__ico_image_begin_load(GdkPixbufModuleSizeFunc size_func, * * free context, unref gdk_pixbuf */ -gboolean gdk_pixbuf__ico_image_stop_load(gpointer data, - GError **error) +static gboolean +gdk_pixbuf__ico_image_stop_load(gpointer data, + GError **error) { struct ico_progressive_state *context = (struct ico_progressive_state *) data; |