diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-03 02:54:20 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-03 02:54:20 +0800 |
commit | 9f50ab5c3c69f86ccdc65aff61f7fd4706fec647 (patch) | |
tree | 36ca6d122778d6b9b2da79552dbdedfe5c3eb882 | |
parent | f534bfa5d1cb04a91c6ae9e1dd320c81310b052b (diff) | |
download | gsoc2013-empathy-9f50ab5c3c69f86ccdc65aff61f7fd4706fec647.tar gsoc2013-empathy-9f50ab5c3c69f86ccdc65aff61f7fd4706fec647.tar.gz gsoc2013-empathy-9f50ab5c3c69f86ccdc65aff61f7fd4706fec647.tar.bz2 gsoc2013-empathy-9f50ab5c3c69f86ccdc65aff61f7fd4706fec647.tar.lz gsoc2013-empathy-9f50ab5c3c69f86ccdc65aff61f7fd4706fec647.tar.xz gsoc2013-empathy-9f50ab5c3c69f86ccdc65aff61f7fd4706fec647.tar.zst gsoc2013-empathy-9f50ab5c3c69f86ccdc65aff61f7fd4706fec647.zip |
Use G_GINT_FORMAT for printinf a goffset. Fixes bug #562873.
svn path=/trunk/; revision=1944
-rw-r--r-- | libempathy/empathy-dispatcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c index ad4778e26..fd363fa17 100644 --- a/libempathy/empathy-dispatcher.c +++ b/libempathy/empathy-dispatcher.c @@ -1027,7 +1027,7 @@ empathy_dispatcher_send_file (EmpathyContact *contact, filename = g_file_get_basename (request->gfile); tp_connection_run_until_ready (connection, FALSE, NULL, NULL); - DEBUG ("Sending %s from a stream to %s (size %lli, content-type %s)", + DEBUG ("Sending %s from a stream to %s (size %"G_GINT64_FORMAT", content-type %s)", filename, empathy_contact_get_name (contact), g_file_info_get_size (info), g_file_info_get_content_type (info)); |