aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/unistim
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-04-17 09:34:38 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-04-17 09:34:38 +0000
commit67900c23bea8f99e268584b7a7f48e45de4878d5 (patch)
tree621193a478d4c45c146bb4b9d092a33e2e3320b6 /plugins/unistim
parent5f6a5798545ac3ff1787c6d47ab7ba5376b41d30 (diff)
Fix Unused varaiable warnings.
CID 1163 - 1166 svn path=/trunk/; revision=36675
Diffstat (limited to 'plugins/unistim')
-rw-r--r--plugins/unistim/packet-unistim.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/unistim/packet-unistim.c b/plugins/unistim/packet-unistim.c
index 7037584efe..8c8f12dccf 100644
--- a/plugins/unistim/packet-unistim.c
+++ b/plugins/unistim/packet-unistim.c
@@ -516,11 +516,10 @@ static gint
dissect_basic_phone(proto_tree *msg_tree,
tvbuff_t *tvb,gint offset, guint msg_len){
guint basic_cmd;
- proto_item *ti;
basic_cmd=tvb_get_guint8(tvb,offset);
- ti=proto_tree_add_item(msg_tree,hf_basic_phone_cmd,tvb,offset,1,FALSE);
+ proto_tree_add_item(msg_tree,hf_basic_phone_cmd,tvb,offset,1,FALSE);
offset+=1;msg_len-=1;
switch(basic_cmd){