diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2009-11-09 14:18:08 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2009-11-09 14:18:08 +0000 |
commit | ea3b87288b27dc6fac1ed68d822a34cc51525939 (patch) | |
tree | d3940543c46010d409a78bdf20a690a1b23668d7 | |
parent | 2672f93988789ae6294e0cdf1fb752563369cdaf (diff) | |
download | wireshark-ea3b87288b27dc6fac1ed68d822a34cc51525939.tar.gz wireshark-ea3b87288b27dc6fac1ed68d822a34cc51525939.tar.bz2 wireshark-ea3b87288b27dc6fac1ed68d822a34cc51525939.zip |
Removed an unused assignment.
svn path=/trunk/; revision=30888
-rw-r--r-- | epan/dissectors/packet-tuxedo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tuxedo.c b/epan/dissectors/packet-tuxedo.c index eeb675dc53..45fc84fd38 100644 --- a/epan/dissectors/packet-tuxedo.c +++ b/epan/dissectors/packet-tuxedo.c @@ -137,7 +137,7 @@ dissect_tuxedo(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) col_set_str(pinfo->cinfo, COL_INFO, "Continuation"); if (tree) { - ti = proto_tree_add_item(tree, proto_tuxedo, tvb, 0, -1, FALSE); + proto_tree_add_item(tree, proto_tuxedo, tvb, 0, -1, FALSE); } } } |