summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-png.c
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2009-12-20 21:13:26 +0100
committerJavier Jardón <jjardon@gnome.org>2009-12-21 00:39:19 +0100
commit716a6975fe8219e4ccf201446f4711508ecf53c3 (patch)
tree3e1ad48bde8fc60a10d8422e81b01920001f25cd /gdk-pixbuf/io-png.c
parent7f1c4f9cfa47c4e52cd818ae512e98a0064caf95 (diff)
downloadgdk-pixbuf-716a6975fe8219e4ccf201446f4711508ecf53c3.tar.gz
Fix compilation warning: use the correct conversion specifier
Use G_GSIZE_FORMAT instead of %d
Diffstat (limited to 'gdk-pixbuf/io-png.c')
-rw-r--r--gdk-pixbuf/io-png.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c
index 8b9086585..da9c61984 100644
--- a/gdk-pixbuf/io-png.c
+++ b/gdk-pixbuf/io-png.c
@@ -883,7 +883,7 @@ static gboolean real_save_png (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);
success = FALSE;
goto cleanup;