From be55a8b81482a0cd4a97dfcd1156b6954497280f Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 20 Sep 2012 10:00:25 +0200 Subject: gsm_utils: Fix up coding style in previous patch 'if' is not a function, so we have space before parenthesis. --- src/gsm/gsm_utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gsm') diff --git a/src/gsm/gsm_utils.c b/src/gsm/gsm_utils.c index f51cf1bc..6af0a5ff 100644 --- a/src/gsm/gsm_utils.c +++ b/src/gsm/gsm_utils.c @@ -146,13 +146,13 @@ int gsm_7bit_decode_hdr(char *text, const uint8_t *user_data, uint8_t septet_l, (user_data[((i + shift) * 7) >> 3] >> (((i + shift) * 7) & 7))) & 0x7f; - if(c == 0x1b && i + 1 < septet_l){ + if (c == 0x1b && i + 1 < septet_l) { next_is_ext = 1; continue; } /* this is an extension character */ - if(next_is_ext){ + if (next_is_ext) { next_is_ext = 0; *(text++) = gsm_7bit_alphabet[0x7f + c]; } else { -- cgit v1.2.3