gtp: Fix Dead Store

Fix dead store (Dead assignement/Dead increment) Warning found by Clang
This commit is contained in:
Alexis La Goutte 2020-09-22 21:35:08 +02:00 committed by Wireshark GitLab Utility
parent e126d91455
commit 4ad8adeab4
1 changed files with 1 additions and 1 deletions

View File

@ -9272,7 +9272,7 @@ addRANContParameter(tvbuff_t *tvb, proto_tree *ran_cont_tree, gint offset)
/* DL Delay DU Result */
if (dl_delay_ind) {
proto_tree_add_item(ran_cont_tree, hf_gtp_ext_hdr_nr_ran_cont_dl_delay_du_result, tvb, offset, 4, ENC_BIG_ENDIAN);
offset += 4;
/* offset += 4; */
}
break;
}