gsm_utils: Fix up coding style in previous patch

'if' is not a function, so we have space before parenthesis.
diff --git a/src/gsm/gsm_utils.c b/src/gsm/gsm_utils.c
index f51cf1b..6af0a5f 100644
--- a/src/gsm/gsm_utils.c
+++ b/src/gsm/gsm_utils.c
@@ -146,13 +146,13 @@
 			 (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 {