summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-jpeg.c
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@src.gnome.org>1999-10-26 20:43:39 +0000
committerJonathan Blandford <jrb@src.gnome.org>1999-10-26 20:43:39 +0000
commite5dfd2f5da47b11c7b7d48fed3adef739f18ea4a (patch)
tree180bd471374330b707fbc839a0b08db812a21b8e /gdk-pixbuf/io-jpeg.c
parentc84756cf3874dba57d696b9b27d2b3e13af8cf1b (diff)
downloadgtk+-e5dfd2f5da47b11c7b7d48fed3adef739f18ea4a.tar.gz
more work on the incremental loading
Diffstat (limited to 'gdk-pixbuf/io-jpeg.c')
-rw-r--r--gdk-pixbuf/io-jpeg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-jpeg.c b/gdk-pixbuf/io-jpeg.c
index f35176a8cb..99972abb89 100644
--- a/gdk-pixbuf/io-jpeg.c
+++ b/gdk-pixbuf/io-jpeg.c
@@ -62,7 +62,8 @@ GdkPixbuf *
image_load (FILE *f)
{
int w, h, i, j;
- guchar *pixels = NULL, *dptr;
+ guchar *pixels = NULL;
+ guchar *dptr;
guchar *lines[4]; /* Used to expand rows, via rec_outbuf_height, from the header file:
* "* Usually rec_outbuf_height will be 1 or 2, at most 4."
*/