diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c index da9c619848..c0374ca966 100644 --- a/gdk-pixbuf/io-png.c +++ b/gdk-pixbuf/io-png.c @@ -883,8 +883,8 @@ static gboolean real_save_png (GdkPixbuf *pixbuf, g_set_error (error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_BAD_OPTION, - _("Color profile has invalid length '%" G_GSIZE_FORMAT "'."), - icc_profile_size); + _("Color profile has invalid length %d."), + (gint)icc_profile_size); success = FALSE; goto cleanup; } diff --git a/gdk-pixbuf/io-tiff.c b/gdk-pixbuf/io-tiff.c index 221bcac626..7128a5c080 100644 --- a/gdk-pixbuf/io-tiff.c +++ b/gdk-pixbuf/io-tiff.c @@ -735,8 +735,8 @@ gdk_pixbuf__tiff_image_save_to_callback (GdkPixbufSaveFunc save_func, g_set_error (error, GDK_PIXBUF_ERROR, GDK_PIXBUF_ERROR_BAD_OPTION, - _("Color profile has invalid length '%d'."), - icc_profile_size); + _("Color profile has invalid length %d."), + (gint)icc_profile_size); retval = FALSE; goto cleanup; }