diff options
author | Michael Fulbright <drmike@redhat.com> | 1999-11-09 23:21:08 +0000 |
---|---|---|
committer | Michael Fulbright <drmike@src.gnome.org> | 1999-11-09 23:21:08 +0000 |
commit | c9a347c8e9f3beae13bea917b3d336e777377e00 (patch) | |
tree | 231cea83d844a2c1e9d5354e17c6975282b2ab18 /gdk-pixbuf/io-jpeg.c | |
parent | 9495faccfcfcd65e8548a58b0f3662d886443a07 (diff) | |
download | gtk+-c9a347c8e9f3beae13bea917b3d336e777377e00.tar.gz |
Slight cosmetic cleanup.
1999-11-09 Michael Fulbright <drmike@redhat.com>
* src/io-jpeg.c: Slight cosmetic cleanup.
* src/io-pnm.c: Fixed raw PNM loading bug. Also discovered that ASCII
PBM loading has a similar problem and will address tomorrow.
Diffstat (limited to 'gdk-pixbuf/io-jpeg.c')
-rw-r--r-- | gdk-pixbuf/io-jpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-jpeg.c b/gdk-pixbuf/io-jpeg.c index 208ec01923..fd402d29ff 100644 --- a/gdk-pixbuf/io-jpeg.c +++ b/gdk-pixbuf/io-jpeg.c @@ -492,7 +492,7 @@ image_load_increment (gpointer data, guchar *buf, guint size) rowptr = context->dptr; for (i=0; i < cinfo->rec_outbuf_height; i++) { *lptr++ = rowptr; - rowptr += context->pixbuf->art_pixbuf->rowstride;; + rowptr += context->pixbuf->art_pixbuf->rowstride; } nlines = jpeg_read_scanlines (cinfo, lines, |