[gdk-pixbuf] jpeg: String not formatted correctly for l10n extraction



commit 651a3c28b2c7da0021d566f7c4038957da1227c2
Author: Benjamin Otte <otte redhat com>
Date:   Sun Feb 10 22:13:20 2013 +0100

    jpeg: String not formatted correctly for l10n extraction
    
    This was introduced in e293d168a3774625641eb3482cff133a62dae2ed
    
    https://bugzilla.gnome.org/show_bug.cgi?id=693534

 gdk-pixbuf/io-jpeg.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gdk-pixbuf/io-jpeg.c b/gdk-pixbuf/io-jpeg.c
index 86418e6..f934dff 100644
--- a/gdk-pixbuf/io-jpeg.c
+++ b/gdk-pixbuf/io-jpeg.c
@@ -1276,8 +1276,8 @@ real_save_jpeg (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 '%u'."),
+                                                    (guint) icc_profile_size);
                                        retval = FALSE;
                                        goto cleanup;
                                }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]