summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2013-01-30 02:30:04 +0100
committerBenjamin Otte <otte@redhat.com>2013-01-30 02:30:14 +0100
commite293d168a3774625641eb3482cff133a62dae2ed (patch)
treeff5a8b70396cf79d6bdaea74d505f8b8f4d3756d
parente39041a4cc301e7130ab2506ede22bed6e223061 (diff)
downloadgdk-pixbuf-e293d168a3774625641eb3482cff133a62dae2ed.tar.gz
jpeg: Fix printf format string
Make gcc stop complaining
-rw-r--r--gdk-pixbuf/io-jpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-jpeg.c b/gdk-pixbuf/io-jpeg.c
index 910158bc2..86418e663 100644
--- a/gdk-pixbuf/io-jpeg.c
+++ b/gdk-pixbuf/io-jpeg.c
@@ -1276,7 +1276,7 @@ real_save_jpeg (GdkPixbuf *pixbuf,
g_set_error (error,
GDK_PIXBUF_ERROR,
GDK_PIXBUF_ERROR_BAD_OPTION,
- _("Color profile has invalid length '%d'."),
+ _("Color profile has invalid length '%"G_GSIZE_FORMAT"'."),
icc_profile_size);
retval = FALSE;
goto cleanup;