summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-tiff.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-01-02 20:11:50 -0500
committerMatthias Clasen <mclasen@redhat.com>2010-01-02 20:11:50 -0500
commit081ac784154dca2ab41e4fa71289b51f4fb0c6dd (patch)
tree23a41f6edffdafc98c799c40f6c4da87bfcce479 /gdk-pixbuf/io-tiff.c
parent5fdab282e20d6b08b1af22f9841f914c2039940c (diff)
downloadgdk-pixbuf-081ac784154dca2ab41e4fa71289b51f4fb0c6dd.tar.gz
Don't use string concatentation in translated strings
gettext can't handle it, and there is no real need to use G_GSIZE_FORMAT here anyway.
Diffstat (limited to 'gdk-pixbuf/io-tiff.c')
-rw-r--r--gdk-pixbuf/io-tiff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/io-tiff.c b/gdk-pixbuf/io-tiff.c
index 221bcac62..7128a5c08 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;
}