aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-netflow.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-02-12 19:24:38 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-02-12 19:24:38 +0000
commit26eebbc7680ea27b1ec3a5cb49c26b62ea974ed3 (patch)
tree6f11b103b6cc6b6e74498cc9deab4679b70dadb5 /epan/dissectors/packet-netflow.c
parent9806283d4c3ba83cb020e5c0c86281b71db3ddf2 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=40998
Diffstat (limited to 'epan/dissectors/packet-netflow.c')
-rw-r--r--epan/dissectors/packet-netflow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-netflow.c b/epan/dissectors/packet-netflow.c
index 4ac380bafc..d4fbe3843b 100644
--- a/epan/dissectors/packet-netflow.c
+++ b/epan/dissectors/packet-netflow.c
@@ -3306,7 +3306,7 @@ dissect_v9_v10_pdu_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *pdutree,
break;
case 139: /* icmpTypeCodeIPv6 */
- ti = proto_tree_add_item(pdutree, hf_cflow_icmp_ipv6_type,
+ proto_tree_add_item(pdutree, hf_cflow_icmp_ipv6_type,
tvb, offset, 1, ENC_NA);
ti = proto_tree_add_item(pdutree, hf_cflow_icmp_ipv6_code,
tvb, offset + 1, 1, ENC_NA);