From a9bb9186dd205013cf5874e0ee841569e4221b3b Mon Sep 17 00:00:00 2001 From: Evan Huus Date: Sun, 23 Sep 2012 12:45:03 +0000 Subject: Fix some unused variable warnings from GCC. svn path=/trunk/; revision=45064 --- epan/dissectors/packet-vines.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'epan/dissectors/packet-vines.c') diff --git a/epan/dissectors/packet-vines.c b/epan/dissectors/packet-vines.c index 366b8318f5..19f3365b7f 100644 --- a/epan/dissectors/packet-vines.c +++ b/epan/dissectors/packet-vines.c @@ -437,7 +437,6 @@ static void dissect_vines_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) { int offset = 0; - guint16 vip_chksum; guint16 vip_pktlen; guint8 vip_tctl; /* Transport Control */ guint8 vip_proto; @@ -453,7 +452,6 @@ dissect_vines_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) /* To do: check for runts, errs, etc. */ /* capture the necessary parts of the header */ - vip_chksum = tvb_get_letohs(tvb, offset); vip_pktlen = tvb_get_letohs(tvb, offset+2); vip_tctl = tvb_get_guint8(tvb, offset+3); vip_proto = tvb_get_guint8(tvb, offset+4); -- cgit v1.2.3