aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-09-15 21:42:13 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-09-15 21:42:13 +0000
commitc05e9683fd6c15f358b932ead19c018b9c69e429 (patch)
tree058137e0d9630ae1313b4991381756c1ab7e61f7 /ui
parentda8240ef608746f9f47526c315c0dca8fcc0ab15 (diff)
unused variable 'conversation'
svn path=/trunk/; revision=52088
Diffstat (limited to 'ui')
-rw-r--r--ui/gtk/conversation_hastables_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/conversation_hastables_dlg.c b/ui/gtk/conversation_hastables_dlg.c
index a2b613018a..4d7dbd29d4 100644
--- a/ui/gtk/conversation_hastables_dlg.c
+++ b/ui/gtk/conversation_hastables_dlg.c
@@ -129,7 +129,7 @@ conversation_hashtable_exact_to_texbuff(gpointer key, gpointer value, gpointer u
{
gchar string_buff[CONV_STR_BUF_MAX];
GtkTextBuffer *buffer = (GtkTextBuffer*)user_data;
- conversation_t *conversation = (conversation_t *)value;
+ /*conversation_t *conversation = (conversation_t *)value;*/
conversation_key *conv_key = (conversation_key*)key;
g_snprintf(string_buff, CONV_STR_BUF_MAX, "Key:0x%x old key:0x%x\n",conversation_hash_exact(conv_key),conversation_hash_exact_old(conv_key));