aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-05-28 00:48:09 +0000
committerEvan Huus <eapache@gmail.com>2013-05-28 00:48:09 +0000
commit292e50ed1dc51216ad1b157c3e2d3938528be11e (patch)
tree6359253446487ffff2763ef7490df9020e5004b6
parentb0090fd046d98c1410cb1f8d4012fea905621fc8 (diff)
Remove unused variable caught by recent GCC
svn path=/trunk/; revision=49601
-rw-r--r--epan/dissectors/packet-sysex.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/dissectors/packet-sysex.c b/epan/dissectors/packet-sysex.c
index 619d475c32..f01299542f 100644
--- a/epan/dissectors/packet-sysex.c
+++ b/epan/dissectors/packet-sysex.c
@@ -1152,7 +1152,6 @@ dissect_sysex_command(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree
{
case SYSEX_MANUFACTURER_DOD:
{
- guint8 checksum;
guint8 digitech_helper;
const guint8 *data_ptr;
int len;
@@ -1182,7 +1181,6 @@ dissect_sysex_command(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree
}
item = proto_tree_add_item(tree, hf_digitech_checksum, tvb, offset, 1, ENC_BIG_ENDIAN);
- checksum = tvb_get_guint8(tvb, offset);
if (digitech_helper == 0)
{
proto_item_append_text(item, " (correct)");