summaryrefslogtreecommitdiff
path: root/epan/dissectors
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-05-22 18:52:45 +0200
committerMartin Kaiser <wireshark@kaiser.cx>2016-05-22 17:55:22 +0000
commit032be8f790264b2105ebee445959c2447e907723 (patch)
tree7c208d544db372e7e9f9b78ada89c3cee4b866a3 /epan/dissectors
parent48b9f47621514271172e54e6ae4df6a8ee5b6115 (diff)
downloadwireshark-032be8f790264b2105ebee445959c2447e907723.tar.gz
manolito: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
Change-Id: I89a69c33486bf4b660118a816abcd2aa855e08d8 Reviewed-on: https://code.wireshark.org/review/15534 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-manolito.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-manolito.c b/epan/dissectors/packet-manolito.c
index d68da636d9..89a3322b7d 100644
--- a/epan/dissectors/packet-manolito.c
+++ b/epan/dissectors/packet-manolito.c
@@ -199,7 +199,7 @@ dissect_manolito(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* diss
}
if (len_ok) {
- ti = proto_tree_add_uint64_format(manolito_tree, hf_manolito_integer, tvb, start,
+ proto_tree_add_uint64_format(manolito_tree, hf_manolito_integer, tvb, start,
4+length, n, "%s (%s): %" G_GINT64_MODIFIER "u",
field_name_str,
val_to_str_ext(field_name, &field_longname_ext, "unknown"),