aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2012-08-20 22:37:31 +0200
committerSylvain Munaut <tnt@246tNt.com>2012-08-25 16:25:15 +0200
commitbeb02df3617da33f1b05292b7f26737f16dcf0ae (patch)
treeaa118ecc256e6b8f7d4870250256f260c5396e89
parent3c0d573c9eb40de9e45f499316371c5ae3af9cfa (diff)
packet-gmr1_bcch: Whitespaces fixes
Those were erroneously introduced during a compile fix Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--epan/dissectors/packet-gmr1_bcch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-gmr1_bcch.c b/epan/dissectors/packet-gmr1_bcch.c
index 950f5740d2..991d5472f3 100644
--- a/epan/dissectors/packet-gmr1_bcch.c
+++ b/epan/dissectors/packet-gmr1_bcch.c
@@ -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);