diff options
author | Matthias Clasen <maclas@gmx.de> | 2003-03-06 20:19:11 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-03-06 20:19:11 +0000 |
commit | 285a25da0308d6eec35c5dedf2f252d0e02f8c15 (patch) | |
tree | e119b6e0c82f481ac2568d3ccc0a4d98813bea2d /gdk-pixbuf/io-gif.c | |
parent | ce58806c0d32a5065465a786b89e37bcc76f976c (diff) | |
download | gtk+-285a25da0308d6eec35c5dedf2f252d0e02f8c15.tar.gz |
Return gboolean, not gint. (#107664, Morten Welinder)
2003-03-06 Matthias Clasen <maclas@gmx.de>
* gdk/gdkrgb.c (gdk_rgb_try_colormap): Return gboolean, not gint.
(#107664, Morten Welinder)
* gdk/x11/gdkwindow-x11.c (gdk_window_get_deskrelative_origin):
* gdk/x11/gdkfont-x11.c (gdk_font_equal):
* gdk/x11/gdkdnd-x11.c (gdk_drag_get_protocol_for_display):
Fix TRUE/1 and FALSE/0 confusion. (#107664, Morten Welinder)
* io-gif.c (gif_read): Fix 0/FALSE confusion (#107664, Morten Welinder)
Diffstat (limited to 'gdk-pixbuf/io-gif.c')
-rw-r--r-- | gdk-pixbuf/io-gif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-gif.c b/gdk-pixbuf/io-gif.c index b5e3072a65..9da97f8366 100644 --- a/gdk-pixbuf/io-gif.c +++ b/gdk-pixbuf/io-gif.c @@ -250,7 +250,7 @@ gif_read (GifContext *context, guchar *buffer, size_t len) } context->amount_needed = len - (context->size - context->ptr); } - return 0; + return FALSE; } /* Changes the stage to be GIF_GET_COLORMAP */ |