Fix Dead Store (Dead assignement/Dead increment) warning found by Clang

svn path=/trunk/; revision=53642
This commit is contained in:
Alexis La Goutte 2013-11-29 08:33:51 +00:00
parent 09e1e860d4
commit 5cb8483d82
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ dissect_nasdaq_itch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
switch (nasdaq_itch_type) {
case 'S': /* system event */
proto_tree_add_item(nasdaq_itch_tree, hf_nasdaq_itch_system_event, tvb, offset, 1, ENC_BIG_ENDIAN);
offset += 1;
/*offset += 1;*/
break;
case 'R': /* Stock Directory */