diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-08 01:34:51 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-08 01:34:54 +0800 |
commit | ff031d276cc1ae2cb16fa700e84497fc599624b8 (patch) | |
tree | fdad4112c8d16c680d25ddd89d6c995d931240f7 | |
parent | ce76a397628746402c494ee8aec6e14a7d8322c7 (diff) | |
download | gsoc2013-empathy-ff031d276cc1ae2cb16fa700e84497fc599624b8.tar gsoc2013-empathy-ff031d276cc1ae2cb16fa700e84497fc599624b8.tar.gz gsoc2013-empathy-ff031d276cc1ae2cb16fa700e84497fc599624b8.tar.bz2 gsoc2013-empathy-ff031d276cc1ae2cb16fa700e84497fc599624b8.tar.lz gsoc2013-empathy-ff031d276cc1ae2cb16fa700e84497fc599624b8.tar.xz gsoc2013-empathy-ff031d276cc1ae2cb16fa700e84497fc599624b8.tar.zst gsoc2013-empathy-ff031d276cc1ae2cb16fa700e84497fc599624b8.zip |
remove useless cast
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index c66f92d05..e942f2151 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -210,7 +210,7 @@ reconnected_connection_ready_cb (TpConnection *connection, const GError *error, gpointer user_data) { - EmpathyChat *chat = EMPATHY_CHAT (user_data); + EmpathyChat *chat = user_data; EmpathyChatPriv *priv = GET_PRIV (chat); if (error != NULL) { |