Fix compilation warning: use the correct conversion specifier

Use G_GSIZE_FORMAT instead of %d
This commit is contained in:
Javier Jardón 2009-12-20 21:13:26 +01:00
parent c939fdbfbc
commit 479c7b0476

View File

@ -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;