summaryrefslogtreecommitdiff
path: root/plugins/wimax
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-30 09:03:16 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-09-30 09:03:16 +0000
commitbdd2350b2c2e16f3f2179c56a65d73eb556ff5f1 (patch)
tree11a99d753258292c187de7be32e3eea7d536ff2d /plugins/wimax
parent8a959928601f86b6256527a6f5fa1129b862db86 (diff)
downloadwireshark-bdd2350b2c2e16f3f2179c56a65d73eb556ff5f1.tar.gz
Fix Dead Store (Dead assignement/Dead increment) warning found by Clang
svn path=/trunk/; revision=52288
Diffstat (limited to 'plugins/wimax')
-rw-r--r--plugins/wimax/msg_reg_req.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/wimax/msg_reg_req.c b/plugins/wimax/msg_reg_req.c
index 752fe15c42..c2cf8c0b3c 100644
--- a/plugins/wimax/msg_reg_req.c
+++ b/plugins/wimax/msg_reg_req.c
@@ -305,7 +305,7 @@ void dissect_extended_tlv(proto_tree *reg_req_tree, gint tlv_type, tvbuff_t *tvb
add_tlv_subtree(&tlv_info, reg_req_tree, hf_reg_max_classifiers, tvb, offset, ENC_BIG_ENDIAN);
break;
case REG_PHS_SUPPORT:
- tlv_tree = add_tlv_subtree(&tlv_info, reg_req_tree, hf_reg_phs, tvb, offset, ENC_BIG_ENDIAN);
+ add_tlv_subtree(&tlv_info, reg_req_tree, hf_reg_phs, tvb, offset, ENC_BIG_ENDIAN);
break;
case REG_ARQ_SUPPORT:
add_tlv_subtree(&tlv_info, reg_req_tree, hf_reg_arq, tvb, offset, ENC_BIG_ENDIAN);