aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-05-02 07:23:24 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-05-02 07:23:24 +0800
commitd1250b3c088eabf02ec8923e169cf78283493c8f (patch)
tree275c9ed53596ce55c66a6b42eeb114d03f6847fa /libempathy
parent16a45d0d6537f4d06763fc9c421b507a187664a9 (diff)
downloadgsoc2013-empathy-d1250b3c088eabf02ec8923e169cf78283493c8f.tar
gsoc2013-empathy-d1250b3c088eabf02ec8923e169cf78283493c8f.tar.gz
gsoc2013-empathy-d1250b3c088eabf02ec8923e169cf78283493c8f.tar.bz2
gsoc2013-empathy-d1250b3c088eabf02ec8923e169cf78283493c8f.tar.lz
gsoc2013-empathy-d1250b3c088eabf02ec8923e169cf78283493c8f.tar.xz
gsoc2013-empathy-d1250b3c088eabf02ec8923e169cf78283493c8f.tar.zst
gsoc2013-empathy-d1250b3c088eabf02ec8923e169cf78283493c8f.zip
Fix unused var if debug is disabled.
svn path=/trunk/; revision=1074
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-tp-group.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libempathy/empathy-tp-group.c b/libempathy/empathy-tp-group.c
index 62212aaad..776fb78a8 100644
--- a/libempathy/empathy-tp-group.c
+++ b/libempathy/empathy-tp-group.c
@@ -732,10 +732,8 @@ tp_group_async_cb (TpChannel *channel,
gpointer user_data,
GObject *weak_object)
{
- const gchar *msg = user_data;
-
if (error) {
- DEBUG ("%s: %s", msg, error->message);
+ DEBUG ("%s: %s", (gchar*) user_data, error->message);
}
}