Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
LAT: Fix Dead Store (Dead assignement/Dead increment) Warning found b…
Browse files Browse the repository at this point in the history
…y Clang

Change-Id: Id8acd15334650ce07de9991fadf3a0c8c09cddcc
Reviewed-on: https://code.wireshark.org/review/13126
Petri-Dish: Dario Lombardo <[email protected]>
Tested-by: Petri Dish Buildbot <[email protected]>
Reviewed-by: Michael Mann <[email protected]>
  • Loading branch information
alagoutte authored and mmann78 committed Jan 8, 2016
1 parent 0ce9ac4 commit c1bcbb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion epan/dissectors/packet-lat.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit c1bcbb6

Please sign in to comment.