summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Fleury <emmanuel.fleury@u-bordeaux.fr>2019-03-27 10:32:43 +0100
committerEmmanuele Bassi <ebassi@gmail.com>2019-11-25 22:40:11 +0000
commitae3f3f7d39ffcf2939bc55f746e910bce0f30cf5 (patch)
tree0de284de82874369da522e1dfa4e54a0a0be8607
parent38006d48e001ef56091c83ed4cca58b3eca80d1a (diff)
downloadgdk-pixbuf-ae3f3f7d39ffcf2939bc55f746e910bce0f30cf5.tar.gz
Fixing format string with missing parameter
Legacy code with probably a bad copy/paste in it. See issue: #96
-rw-r--r--contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.c b/contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.c
index e0d4f79ef..66b8f0258 100644
--- a/contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.c
+++ b/contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.c
@@ -3565,7 +3565,7 @@ xlib_rgb_cmap_new (guint32 *colors, int n_colors)
((rgb & 0xf000) >> 8) |
((rgb & 0xf0) >> 4);
#ifdef VERBOSE
- printf ("%d %x %x %d\n", i, j, colorcube[j]);
+ printf ("%d %d %x\n", i, j, colorcube[j]);
#endif
cmap->lut[i] = colorcube[j];
}