Erroneously ommitted from the patch of Bug 4219:

bit_offset used instead of curr_bit_offset


svn path=/trunk/; revision=30974
This commit is contained in:
Gerasimos Dimitriadis 2009-11-16 16:20:49 +00:00
parent 1cf14efba1
commit 79cf9b5f45
1 changed files with 1 additions and 1 deletions

View File

@ -4361,7 +4361,7 @@ de_rr_bsic_desc(tvbuff_t *tvb, proto_tree *tree, gint bit_offset, rr_rest_octets
{
proto_tree_add_bits_item(subtree, hf_gsm_a_rr_frequency_scrolling, tvb, curr_bit_offset, 1, FALSE);
curr_bit_offset += 1;
proto_tree_add_bits_item(subtree, hf_gsm_a_rr_bsic, tvb, bit_offset, 6, FALSE);
proto_tree_add_bits_item(subtree, hf_gsm_a_rr_bsic, tvb, curr_bit_offset, 6, FALSE);
curr_bit_offset += 6;
idx -= 1;
}