diff options
author | Javier Jardón <jjardon@gnome.org> | 2009-12-20 21:13:26 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2009-12-21 00:39:19 +0100 |
commit | 479c7b047648119f6fb0cf754fdbd3b08acc211e (patch) | |
tree | dc869ecd33204eb429df30ee0fcdc22612c02ea5 /gdk-pixbuf | |
parent | c939fdbfbc92c29f6e68461bbce7733160cc7f1c (diff) | |
download | gtk+-479c7b047648119f6fb0cf754fdbd3b08acc211e.tar.gz |
Fix compilation warning: use the correct conversion specifier
Use G_GSIZE_FORMAT instead of %d
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/io-png.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c index 8b90865855..da9c619848 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; |