diff options
author | Javier Jardón <jjardon@gnome.org> | 2009-10-30 19:11:28 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2009-10-30 19:24:08 +0100 |
commit | 141a7dac000a5cc4c103e614291021f0b292660c (patch) | |
tree | fbf090a8ade8aa9658ac59a821fba37b6f4bb74b /gdk-pixbuf | |
parent | 550796d897380d64675373d763275d69eefbcad1 (diff) | |
download | gtk+-141a7dac000a5cc4c103e614291021f0b292660c.tar.gz |
Fix warning: Initialize to TRUE the returned variable
Also, fixing some indentation problems
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/io-qtif.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdk-pixbuf/io-qtif.c b/gdk-pixbuf/io-qtif.c index 0b80fe0e63..a30b5c0250 100644 --- a/gdk-pixbuf/io-qtif.c +++ b/gdk-pixbuf/io-qtif.c @@ -268,14 +268,14 @@ static gpointer gdk_pixbuf__qtif_image_begin_load (GdkPixbufModuleSizeFunc size_ context->prepare_func = prepare_func; context->update_func = update_func; - return context; + return context; } /* Incremental load clean up. */ static gboolean gdk_pixbuf__qtif_image_stop_load (gpointer data, GError **error) { QTIFContext *context = (QTIFContext *)data; - gboolean ret; + gboolean ret = TRUE; if(context->loader != NULL) { @@ -288,7 +288,8 @@ static gboolean gdk_pixbuf__qtif_image_stop_load (gpointer data, GError **error) } } g_free(context); - return ret; + + return ret; } /* Create a new GdkPixbufLoader and connect to its signals. */ |