Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang

svn path=/trunk/; revision=50616
This commit is contained in:
Alexis La Goutte 2013-07-15 18:03:33 +00:00
parent 579b937bdf
commit 15a785c757
1 changed files with 2 additions and 1 deletions

View File

@ -602,7 +602,8 @@ dissect_af (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
proto_tree_add_boolean(af_tree, hf_edcp_crc_ok, tvb, offset, 2, c==0xe2f0);
}
}
offset += 2;
/*offset += 2;*/
dissector_try_uint(af_dissector_table, pt, next_tvb, pinfo, tree);
}