aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2018-09-11 10:33:17 +0000
committerAnders Broman <a.broman58@gmail.com>2018-09-11 17:38:02 +0000
commit342f7d2987bdb5617e52ff405458961e5f84cfc3 (patch)
tree5f94ef4a7fcf5cc04089a7c5e5ee529c24756c5e /epan
parent71378072e6070ef92e296cb11dda946f75b0c112 (diff)
ieee80211: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
Change-Id: I27c82383987aa4da3bf86c5abc0d467252be5c80 Reviewed-on: https://code.wireshark.org/review/29599 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ieee80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index 3bb33a4117..55dd02969a 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -22426,7 +22426,7 @@ dissect_ieee80211_he_trigger(tvbuff_t *tvb, packet_info *pinfo _U_,
/*
* Now the User Info field. It returns an offset not a length used.
*/
- offset = add_he_trigger_user_info(tree, tvb, offset, pinfo,
+ add_he_trigger_user_info(tree, tvb, offset, pinfo,
trigger_type, &length);
/*