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

svn path=/trunk/; revision=47733
This commit is contained in:
Alexis La Goutte 2013-02-18 17:24:21 +00:00
parent e5fc3c8c4b
commit e9463ef07f
1 changed files with 1 additions and 1 deletions

View File

@ -1168,7 +1168,7 @@ static void child_tree(tvbuff_t *tvb, packet_info *pinfo, proto_tree *insert_tre
check = tvb_get_guint8(tvb, *offset);
if (check == OPTIONAL){
child = proto_tree_add_text (insert_tree, tvb, *offset, 1, "Child List: NOT SET");
proto_tree_add_text (insert_tree, tvb, *offset, 1, "Child List: NOT SET");
*offset+=1;
}
else if ((check & 0x0F) != 0){