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

svn path=/trunk/; revision=51552
This commit is contained in:
Alexis La Goutte 2013-08-27 21:13:09 +00:00
parent af7e3d0835
commit 574183b9ec
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ dissect_cmd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree_add_item(cmd_tree, hf_cmd_options, tvb, offset, 2, ENC_BIG_ENDIAN);
offset += 2;
proto_tree_add_item(cmd_tree, hf_cmd_sgt, tvb, offset, 2, ENC_BIG_ENDIAN);
offset += 2;
/*offset += 2;*/
}
encap_proto = tvb_get_ntohs(tvb, 6);