rtps-virtual-transport: Add comment about type of variable

following code review from Luis
This commit is contained in:
Alexis La Goutte 2021-05-31 10:47:59 +00:00 committed by Wireshark GitLab Utility
parent a65b879b04
commit aa36919b4b
1 changed files with 1 additions and 1 deletions

View File

@ -972,7 +972,7 @@ static gint dissect_rtps_virtual_transport_loss_info_type(
param_id = tvb_get_guint16(tvb, offset, ENC_BIG_ENDIAN);
offset += 2;
offset += 2;
offset += 2; /* parameter length */
if (param_id == PARAM_ID_LOST_MESSAGES) {
guint64 first_lost = tvb_get_guint64(tvb, offset, ENC_BIG_ENDIAN);
guint64 last_lost = tvb_get_guint64(tvb, offset+8, ENC_BIG_ENDIAN);