aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-kismet.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-06-29 21:59:53 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-06-29 21:59:53 +0000
commit43be7b67aaa83e32816e0ef90f88cd6c4c5f0332 (patch)
tree847394c407ba4ec5cb56c4ce7b16eda8338ffdac /epan/dissectors/packet-kismet.c
parent391f902f44a9a211a6f73845d2d762009dec631d (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=50238
Diffstat (limited to 'epan/dissectors/packet-kismet.c')
-rw-r--r--epan/dissectors/packet-kismet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-kismet.c b/epan/dissectors/packet-kismet.c
index 352edd3a29..e2ed4b46af 100644
--- a/epan/dissectors/packet-kismet.c
+++ b/epan/dissectors/packet-kismet.c
@@ -251,8 +251,8 @@ dissect_kismet(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree, void * da
}
}
- offset += (gint) (next_token - line);
- linelen -= (int) (next_token - line);
+ /*offset += (gint) (next_token - line);
+ linelen -= (int) (next_token - line);*/
line = next_token;
}
}