[Xfce4-commits] <tumbler:master> (Hopefully) fix the format string for guint64.
Jannis Pohlmann
noreply at xfce.org
Thu Jan 7 14:38:01 CET 2010
Updating branch refs/heads/master
to bd71fb1bb8ef57ea300a4cd9f394d365dd870111 (commit)
from be8cece0ea3bdc0276e49e74ec0968060151309b (commit)
commit bd71fb1bb8ef57ea300a4cd9f394d365dd870111
Author: Jannis Pohlmann <jannis at xfce.org>
Date: Thu Jan 7 14:37:47 2010 +0100
(Hopefully) fix the format string for guint64.
plugins/xdg-cache/xdg-cache-cache.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/plugins/xdg-cache/xdg-cache-cache.c b/plugins/xdg-cache/xdg-cache-cache.c
index dbc9e92..10bfd09 100644
--- a/plugins/xdg-cache/xdg-cache-cache.c
+++ b/plugins/xdg-cache/xdg-cache-cache.c
@@ -643,7 +643,7 @@ xdg_cache_cache_write_thumbnail_info (const gchar *filename,
{
if (!g_cancellable_set_error_if_cancelled (cancellable, &err))
{
- mtime_str = g_strdup_printf ("%lld", mtime);
+ mtime_str = g_strdup_printf ("%llu", mtime);
gdk_pixbuf_save (pixbuf, filename, "png", &err,
"tEXt::Thumb::URI", uri,
More information about the Xfce4-commits
mailing list