summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-btobex.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2011-10-26 18:02:17 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2011-10-26 18:02:17 +0000
commit542bf6f9b78132d3c30542541bca22ee9079b504 (patch)
treeb3319a71caa4e8b987c5f3cae77bb7026a662563 /epan/dissectors/packet-btobex.c
parent4c2317f44d962726770efc06f575939116aa1ccf (diff)
downloadwireshark-542bf6f9b78132d3c30542541bca22ee9079b504.tar.gz
Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=39611
Diffstat (limited to 'epan/dissectors/packet-btobex.c')
-rw-r--r--epan/dissectors/packet-btobex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-btobex.c b/epan/dissectors/packet-btobex.c
index 22e9084bf1..7414867336 100644
--- a/epan/dissectors/packet-btobex.c
+++ b/epan/dissectors/packet-btobex.c
@@ -576,7 +576,7 @@ dissect_btobex(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
break;
}
- offset = dissect_headers(st, next_tvb, offset, pinfo);
+ dissect_headers(st, next_tvb, offset, pinfo);
}
else
{