From dedd908c86bae57725536bf7fe38759479cd9138 Mon Sep 17 00:00:00 2001 From: Benedikt Meurer <benny@xfce.org> Date: Mon, 6 Feb 2006 09:29:41 +0000 Subject: [PATCH] 2006-02-06 Benedikt Meurer <benny@xfce.org> * thunar/thunar-properties-dialog.c(thunar_properties_dialog_update): Use G_GINT64_FORMAT instead of "lld" as format for the file size. (Old svn revision: 19759) --- ChangeLog | 5 +++++ thunar/thunar-properties-dialog.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f6870ea81..dcda3e821 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-02-06 Benedikt Meurer <benny@xfce.org> + + * thunar/thunar-properties-dialog.c(thunar_properties_dialog_update): + Use G_GINT64_FORMAT instead of "lld" as format for the file size. + 2006-02-06 Benedikt Meurer <benny@xfce.org> * Thunar.desktop.in: Add "GTK" to the Categories. diff --git a/thunar/thunar-properties-dialog.c b/thunar/thunar-properties-dialog.c index 01502c835..5e20cb776 100644 --- a/thunar/thunar-properties-dialog.c +++ b/thunar/thunar-properties-dialog.c @@ -764,7 +764,7 @@ thunar_properties_dialog_update (ThunarPropertiesDialog *dialog) if (G_LIKELY (size_string != NULL)) { size = thunar_file_get_size (dialog->file); - str = g_strdup_printf (_("%s (%lld Bytes)"), size_string, (gint64) size); + str = g_strdup_printf (_("%s (%" G_GINT64_FORMAT " Bytes)"), size_string, (gint64) size); gtk_label_set_text (GTK_LABEL (dialog->size_label), str); gtk_widget_show (dialog->size_label); g_free (size_string); -- GitLab