summaryrefslogtreecommitdiff
path: root/gdk/gdkpixbuf-drawable.c
diff options
context:
space:
mode:
authorSven Neumann <sven@gimp.org>2002-09-14 17:10:49 +0000
committerSven Neumann <neo@src.gnome.org>2002-09-14 17:10:49 +0000
commit3f01e7e533f4dcb82c77bd0a638ce951f71fb07e (patch)
tree93c6b19cd702953fc41aa6f2461c8eb7b4fdaf2e /gdk/gdkpixbuf-drawable.c
parent11b366a646f6644e3e8db74ce8def4460eb0a228 (diff)
downloadgtk+-3f01e7e533f4dcb82c77bd0a638ce951f71fb07e.tar.gz
fixed my latest change.
2002-09-14 Sven Neumann <sven@gimp.org> * gdk/gdkpixbuf-drawable.c: fixed my latest change.
Diffstat (limited to 'gdk/gdkpixbuf-drawable.c')
-rw-r--r--gdk/gdkpixbuf-drawable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkpixbuf-drawable.c b/gdk/gdkpixbuf-drawable.c
index 042db48781..0259534cb4 100644
--- a/gdk/gdkpixbuf-drawable.c
+++ b/gdk/gdkpixbuf-drawable.c
@@ -345,7 +345,7 @@ rgb8a (GdkImage *image,
remap[xx] = 0xff
| (colormap->colors[xx].red & 0xff00) << 16
| (colormap->colors[xx].green & 0xff00) << 8
- | (colormap->colors[xx].blue & 0xff00));
+ | (colormap->colors[xx].blue & 0xff00);
#endif
}