aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x29.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-01 09:21:48 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-02-01 09:21:48 +0000
commit5bff584648da280cce4b0861146ddb09243e8dc8 (patch)
treec7c503403021392c48eec9c199b975429def3018 /epan/dissectors/packet-x29.c
parent8afb6106f2fb565aff0ec9f00b3dcf7217ed5255 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=47410
Diffstat (limited to 'epan/dissectors/packet-x29.c')
-rw-r--r--epan/dissectors/packet-x29.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-x29.c b/epan/dissectors/packet-x29.c
index 33d66ed7ed..b86605617c 100644
--- a/epan/dissectors/packet-x29.c
+++ b/epan/dissectors/packet-x29.c
@@ -218,7 +218,7 @@ dissect_x29(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/*
* Find the end of the line.
*/
- linelen = tvb_find_line_end(tvb, offset, -1,
+ tvb_find_line_end(tvb, offset, -1,
&next_offset, FALSE);
/*