Removed double parentheses in a while

svn path=/trunk/; revision=45943
This commit is contained in:
Stig Bjørlykke 2012-11-06 08:40:40 +00:00
parent 7646c6beb8
commit 1e355c77d3
1 changed files with 1 additions and 1 deletions

View File

@ -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)