From 2323398ad4771f85364efc56b03e976b4f1b4fa3 Mon Sep 17 00:00:00 2001 From: Mathias Hasselmann Date: Thu, 13 Nov 2008 22:07:52 +0000 Subject: [PATCH] Use proper format string for max-size property svn path=/trunk/; revision=1718 --- libempathy-gtk/empathy-avatar-chooser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libempathy-gtk/empathy-avatar-chooser.c b/libempathy-gtk/empathy-avatar-chooser.c index 403dcb9a..19b4ef8d 100644 --- a/libempathy-gtk/empathy-avatar-chooser.c +++ b/libempathy-gtk/empathy-avatar-chooser.c @@ -485,7 +485,7 @@ avatar_chooser_maybe_convert_and_scale (EmpathyAvatarChooser *chooser, * try with a lower factor. */ if (max_size > 0 && avatar->len > max_size && !needs_conversion) { DEBUG ("Image data (%"G_GSIZE_FORMAT" bytes) is too big " - "(max is %"G_GSIZE_FORMAT" bytes), conversion needed.", + "(max is %u bytes), conversion needed.", avatar->len, max_size); factor = 0.5; -- 2.39.2