summaryrefslogtreecommitdiff
path: root/src/upload
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2011-08-01 12:37:12 +0200
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>2011-09-21 14:41:51 +0300
commite56cc0eefa2e00ab6324031c4b08c6214b9e767a (patch)
tree95f991de4b4ec30595700e2d77c9771db8e02845 /src/upload
parent6edaa6449ec02476e5392f8f7484d1b793f6adc1 (diff)
downloadgupnp-tools-e56cc0eefa2e00ab6324031c4b08c6214b9e767a.tar.gz
Avoid compiler warning by using format constant
https://bugzilla.gnome.org/show_bug.cgi?id=659315
Diffstat (limited to 'src/upload')
-rw-r--r--src/upload/transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/upload/transfer.c b/src/upload/transfer.c
index 9b1d5bc..a1fcdaf 100644
--- a/src/upload/transfer.c
+++ b/src/upload/transfer.c
@@ -76,7 +76,7 @@ get_transfer_progress_cb (GUPnPServiceProxy *cds_proxy,
if (total > 0) {
guint64 progress = length * 100 / total;
- g_print ("\b\b\b%2llu%%", progress);
+ g_print ("\b\b\b%2" G_GUINT64_FORMAT "%%", progress);
}
data->action = NULL;