aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-ft-handler.c
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2009-02-18 03:07:06 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2009-06-01 23:46:05 +0800
commite5ac1f797a0e2f24f9a2412abf833dcdddf6998d (patch)
treed9a795af966434d25f677e55221296916d998a72 /libempathy/empathy-ft-handler.c
parenta5440333ee18a3174acc2437e2ba1e30365b1bca (diff)
downloadgsoc2013-empathy-e5ac1f797a0e2f24f9a2412abf833dcdddf6998d.tar
gsoc2013-empathy-e5ac1f797a0e2f24f9a2412abf833dcdddf6998d.tar.gz
gsoc2013-empathy-e5ac1f797a0e2f24f9a2412abf833dcdddf6998d.tar.bz2
gsoc2013-empathy-e5ac1f797a0e2f24f9a2412abf833dcdddf6998d.tar.lz
gsoc2013-empathy-e5ac1f797a0e2f24f9a2412abf833dcdddf6998d.tar.xz
gsoc2013-empathy-e5ac1f797a0e2f24f9a2412abf833dcdddf6998d.tar.zst
gsoc2013-empathy-e5ac1f797a0e2f24f9a2412abf833dcdddf6998d.zip
Make libempathy compile with the new changes.
Diffstat (limited to 'libempathy/empathy-ft-handler.c')
-rw-r--r--libempathy/empathy-ft-handler.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libempathy/empathy-ft-handler.c b/libempathy/empathy-ft-handler.c
index 85d70dbd2..ca054aa35 100644
--- a/libempathy/empathy-ft-handler.c
+++ b/libempathy/empathy-ft-handler.c
@@ -334,7 +334,6 @@ ft_transfer_operation_callback (EmpathyTpFile *tp_file,
static void
ft_transfer_progress_callback (EmpathyTpFile *tp_file,
guint64 transferred_bytes,
- guint64 total_bytes,
gpointer user_data)
{
EmpathyFTHandler *handler = user_data;
@@ -344,7 +343,7 @@ ft_transfer_progress_callback (EmpathyTpFile *tp_file,
{
priv->transferred_bytes = transferred_bytes;
g_signal_emit (handler, signals[TRANSFER_PROGRESS], 0,
- transferred_bytes, total_bytes);
+ transferred_bytes, priv->total_bytes);
}
}