packet-gmr1_bcch: Whitespaces fixes

svn path=/trunk/; revision=44673
This commit is contained in:
Pascal Quantin 2012-08-25 21:19:47 +00:00
parent 6c12a7ffdc
commit f783da2d6d
1 changed files with 4 additions and 4 deletions

View File

@ -1027,8 +1027,8 @@ static const value_string si1_randomization_period_vals[] = {
static void
dissect_gmr1_bcch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
proto_item *bcch_item = NULL;
proto_tree *bcch_tree = NULL;
proto_item *bcch_item = NULL;
proto_tree *bcch_tree = NULL;
csnStream_t ar;
gboolean is_si1;
@ -1036,11 +1036,11 @@ dissect_gmr1_bcch(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
is_si1 = tvb_get_bits8(tvb, 0, 5) & 1;
bcch_item = proto_tree_add_protocol_format(
bcch_item = proto_tree_add_protocol_format(
tree, proto_gmr1_bcch, tvb, 0, -1,
"GMR-1 BCCH - System Information type %d", is_si1 ? 1 : 2
);
bcch_tree = proto_item_add_subtree(bcch_item, ett_gmr1_bcch);
bcch_tree = proto_item_add_subtree(bcch_item, ett_gmr1_bcch);
csnStreamInit(&ar, 0, tvb_length(tvb)*8);