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

svn path=/trunk/; revision=46966
This commit is contained in:
Alexis La Goutte 2013-01-06 14:50:44 +00:00
parent 1cd2e3cd1b
commit b3db35e7a6
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ dissect_pw_status_tlv (tvbuff_t *tvb, proto_tree *tree, gint offset)
offset = offset + 2;
proto_tree_add_item (pw_oam_tlv_tree, hf_pw_oam_code, tvb, offset,
4, ENC_BIG_ENDIAN);
offset = offset + 4;
/*offset = offset + 4;*/
return ;
}