[gdk-pixbuf] jpeg: Fix printf format string



commit e293d168a3774625641eb3482cff133a62dae2ed
Author: Benjamin Otte <otte redhat com>
Date:   Wed Jan 30 02:30:04 2013 +0100

    jpeg: Fix printf format string
    
    Make gcc stop complaining

 gdk-pixbuf/io-jpeg.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gdk-pixbuf/io-jpeg.c b/gdk-pixbuf/io-jpeg.c
index 910158b..86418e6 100644
--- a/gdk-pixbuf/io-jpeg.c
+++ b/gdk-pixbuf/io-jpeg.c
@@ -1276,7 +1276,7 @@ real_save_jpeg (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);
                                        retval = FALSE;
                                        goto cleanup;



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