Rename a variable to avoid a compiler warning.

(Thanks, IBM and AT&T.)

Change-Id: Ifcffd4937f90ca466c01ebc4f3e3bd8555a9b078
Reviewed-on: https://code.wireshark.org/review/6198
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-12-31 21:02:46 -08:00
parent 21697af636
commit a4019a357b
1 changed files with 3 additions and 3 deletions

View File

@ -999,7 +999,7 @@ static gint Mini_Subchannel_allocation_IE(proto_tree *uiuc_tree, gint offset, gi
/* offset of TLV in nibbles, length of TLV in nibbles */
gint bit;
gint data;
guint index;
guint idx;
proto_item *tree;
gint j, M;
const gint m_table[4] = { 2, 2, 3, 6 };
@ -1011,8 +1011,8 @@ static gint Mini_Subchannel_allocation_IE(proto_tree *uiuc_tree, gint offset, gi
XBIT_HF(4, hf_ulmap_mini_subcha_alloc_extended_2_uiuc);
XBIT_HF(8, hf_ulmap_mini_subcha_alloc_length);
XBIT_HF_VALUE(index, 2, hf_ulmap_mini_subcha_alloc_ctype);
M = m_table[index];
XBIT_HF_VALUE(idx, 2, hf_ulmap_mini_subcha_alloc_ctype);
M = m_table[idx];
XBIT_HF(6, hf_ulmap_mini_subcha_alloc_duration);
for (j = 0; j < M; j++) {