From 5bff584648da280cce4b0861146ddb09243e8dc8 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Fri, 1 Feb 2013 09:21:48 +0000 Subject: Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang svn path=/trunk/; revision=47410 --- epan/dissectors/packet-x29.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-x29.c') 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); /* -- cgit v1.2.3