aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h263p.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2011-10-26 18:01:42 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2011-10-26 18:01:42 +0000
commitd7c13d0e2d048d5d0d005e557353159084576a2d (patch)
tree7a02aa4d2d2199fa1079183e4050672ce1a3708e /epan/dissectors/packet-h263p.c
parentbcefa6c2c37a2d7fb5bd5f4c1108a7bacbefff8b (diff)
Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=39609
Diffstat (limited to 'epan/dissectors/packet-h263p.c')
-rw-r--r--epan/dissectors/packet-h263p.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h263p.c b/epan/dissectors/packet-h263p.c
index 2ec9400fa6..0e078074d1 100644
--- a/epan/dissectors/packet-h263p.c
+++ b/epan/dissectors/packet-h263p.c
@@ -176,7 +176,7 @@ dissect_h263P( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
* ( 1000 00x.)
*/
col_append_str( pinfo->cinfo, COL_INFO, "(PSC) ");
- offset = dissect_h263_picture_layer( tvb, pinfo, h263P_data_tree, offset, -1, TRUE);
+ dissect_h263_picture_layer( tvb, pinfo, h263P_data_tree, offset, -1, TRUE);
break;
case 0xfc:
case 0xfe: