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

svn path=/trunk/; revision=51672
This commit is contained in:
Alexis La Goutte 2013-09-02 23:13:58 +00:00
parent b897a6198d
commit c35cc805f4
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ dissect_mqpcf(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_tree_add_item(mq_tree, hf_mqpcf_cfh_reason, tvb, offset + 28, 4, bLittleEndian);
proto_tree_add_item(mq_tree, hf_mqpcf_cfh_paramcount, tvb, offset + 32, 4, bLittleEndian);
}
offset += iSizeMQCFH;
/*offset += iSizeMQCFH;*/
}
}