aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-msn-messenger.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-04-22 21:26:09 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-04-22 21:26:09 +0000
commit3f5c5aad62020903224fa25653522b25a3f204b9 (patch)
tree53a2d5b74b6c2a8e5c0d61986cde10489678f888 /epan/dissectors/packet-msn-messenger.c
parent76ef1e0acc600e1f171ff9df09c87f2a9526ba39 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=48988
Diffstat (limited to 'epan/dissectors/packet-msn-messenger.c')
-rw-r--r--epan/dissectors/packet-msn-messenger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-msn-messenger.c b/epan/dissectors/packet-msn-messenger.c
index 6774782ff3..5b1450f8d4 100644
--- a/epan/dissectors/packet-msn-messenger.c
+++ b/epan/dissectors/packet-msn-messenger.c
@@ -105,7 +105,7 @@ dissect_msnms(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);
/*