From 966ae7b61315f2c92b843ed6734fdcd6a31d7a74 Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Tue, 2 Nov 1999 20:20:05 +0000 Subject: [PATCH] Return TRUE if all the data got eaten by header_buf, instead of FALSE. Return TRUE if all the data got eaten by header_buf, instead of FALSE. --- gdk-pixbuf/gdk-pixbuf-loader.c | 2 +- gtk/gdk-pixbuf-loader.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gdk-pixbuf/gdk-pixbuf-loader.c b/gdk-pixbuf/gdk-pixbuf-loader.c index 160d139840..b8e0986418 100644 --- a/gdk-pixbuf/gdk-pixbuf-loader.c +++ b/gdk-pixbuf/gdk-pixbuf-loader.c @@ -332,7 +332,7 @@ gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count) if (count > 0 && priv->image_module->load_increment) return (* priv->image_module->load_increment) (priv->context, buf, count); - return (FALSE); + return TRUE; } /** diff --git a/gtk/gdk-pixbuf-loader.c b/gtk/gdk-pixbuf-loader.c index 160d139840..b8e0986418 100644 --- a/gtk/gdk-pixbuf-loader.c +++ b/gtk/gdk-pixbuf-loader.c @@ -332,7 +332,7 @@ gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count) if (count > 0 && priv->image_module->load_increment) return (* priv->image_module->load_increment) (priv->context, buf, count); - return (FALSE); + return TRUE; } /**