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)
This commit is contained in:
Matthias Clasen 2003-03-21 00:13:17 +00:00 committed by Matthias Clasen
parent 6b76b0cc9b
commit b6d19fe207
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
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)
2003-03-11 Matthias Clasen <maclas@gmx.de>
* io-ico.c (DecodeHeader): Calculate LineWidth for 16bpp from

View File

@ -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;

View File

@ -449,7 +449,7 @@ skip_input_data (j_decompress_ptr cinfo, long num_bytes)
* return context (opaque to user)
*/
gpointer
static gpointer
gdk_pixbuf__jpeg_image_begin_load (GdkPixbufModuleSizeFunc size_func,
GdkPixbufModulePreparedFunc prepared_func,
GdkPixbufModuleUpdatedFunc updated_func,