diff options
author | Jonathan Blandford <jrb@src.gnome.org> | 1999-10-26 20:43:39 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 1999-10-26 20:43:39 +0000 |
commit | e5dfd2f5da47b11c7b7d48fed3adef739f18ea4a (patch) | |
tree | 180bd471374330b707fbc839a0b08db812a21b8e /gdk-pixbuf/io-jpeg.c | |
parent | c84756cf3874dba57d696b9b27d2b3e13af8cf1b (diff) | |
download | gtk+-e5dfd2f5da47b11c7b7d48fed3adef739f18ea4a.tar.gz |
more work on the incremental loading
Diffstat (limited to 'gdk-pixbuf/io-jpeg.c')
-rw-r--r-- | gdk-pixbuf/io-jpeg.c | 3 |
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." */ |