diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-09-01 23:55:47 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-09-01 23:56:58 -0400 |
commit | 1204a850f3a133fcbbc20c229037dcb560cf9efa (patch) | |
tree | e70303062944327ba635ccca7f498adf013fd7b0 /demos/gtk-demo/pixbufs.c | |
parent | c5cd4174c3010a1199bb6797610708b387a23034 (diff) | |
download | gtk+-1204a850f3a133fcbbc20c229037dcb560cf9efa.tar.gz |
Formatting cleanups
While we normally try to avoid whitespace fixes, the gtk-demo
code is shown as exemplary, so it should be in good shape,
formatting-wise.
Diffstat (limited to 'demos/gtk-demo/pixbufs.c')
-rw-r--r-- | demos/gtk-demo/pixbufs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/gtk-demo/pixbufs.c b/demos/gtk-demo/pixbufs.c index 4cc7190497..ed1ed81b24 100644 --- a/demos/gtk-demo/pixbufs.c +++ b/demos/gtk-demo/pixbufs.c @@ -71,7 +71,7 @@ load_pixbufs (GError **error) background = gdk_pixbuf_new_from_file (filename, error); g_free (filename); - + if (!background) return FALSE; /* Note that "error" was filled with a GError */ @@ -83,10 +83,10 @@ load_pixbufs (GError **error) filename = demo_find_file (image_names[i], error); if (!filename) return FALSE; /* Note that "error" was filled with a GError */ - + images[i] = gdk_pixbuf_new_from_file (filename, error); g_free (filename); - + if (!images[i]) return FALSE; /* Note that "error" was filled with a GError */ } |