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

Change-Id: Id8acd15334650ce07de9991fadf3a0c8c09cddcc
Reviewed-on: https://code.wireshark.org/review/13126
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2016-01-08 10:35:11 +01:00 committed by Michael Mann
parent 0ce9ac4137
commit c1bcbb6eee
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ dissect_lat_header(tvbuff_t *tvb, int offset, proto_tree *tree)
offset += 1;
proto_tree_add_item(tree, hf_lat_ack_number, tvb, offset, 1, ENC_LITTLE_ENDIAN);
offset += 1;
/*offset += 1;*/
return num_slots;
}