From 1e355c77d36769cf55f2698006feca68581b1b5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Tue, 6 Nov 2012 08:40:40 +0000 Subject: [PATCH] Removed double parentheses in a while svn path=/trunk/; revision=45943 --- epan/dissectors/packet-gsm_rlcmac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-gsm_rlcmac.c b/epan/dissectors/packet-gsm_rlcmac.c index 95d10ea0e5..fb943171f9 100644 --- a/epan/dissectors/packet-gsm_rlcmac.c +++ b/epan/dissectors/packet-gsm_rlcmac.c @@ -6734,7 +6734,7 @@ static guint8 construct_gprs_data_segment_li_array(tvbuff_t *tvb, proto_tree *tr proto_item *item; *li_count = 0; - while((*e == 0)) + while(*e == 0) { item = proto_tree_add_bits_item(tree, hf_li, tvb, offset * 8, 6, ENC_BIG_ENDIAN); if(*li_count < li_array_size)