fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmocore/+/28507 )


Change subject: gsm48_ie: fix coding style: while is not a function
......................................................................

gsm48_ie: fix coding style: while is not a function

Change-Id: Id28bf61c5e1dfb6da1c89a5502eb869b67fed6c6
---
M src/gsm/gsm48_ie.c
1 file changed, 3 insertions(+), 3 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/07/28507/1

diff --git a/src/gsm/gsm48_ie.c b/src/gsm/gsm48_ie.c
index 6d40bec..4fa4924 100644
--- a/src/gsm/gsm48_ie.c
+++ b/src/gsm/gsm48_ie.c
@@ -203,7 +203,7 @@
        case GSM_MNCC_BCAP_SPEECH:
                i = 1;
                s = 0;
-               while(!(lv[i] & 0x80)) {
+               while (!(lv[i] & 0x80)) {
                        i++; /* octet 3a etc */
                        if (in_len < i)
                                return 0;
@@ -218,7 +218,7 @@
        case GSM_MNCC_BCAP_UNR_DIG:
        case GSM_MNCC_BCAP_FAX_G3:
                i = 1;
-               while(!(lv[i] & 0x80)) {
+               while (!(lv[i] & 0x80)) {
                        i++; /* octet 3a etc */
                        if (in_len < i)
                                return 0;
@@ -232,7 +232,7 @@
                        return 0;
                bcap->data.rate_adaption = (lv[i] >> 3) & 3;
                bcap->data.sig_access = lv[i] & 7;
-               while(!(lv[i] & 0x80)) {
+               while (!(lv[i] & 0x80)) {
                        i++; /* octet 5a etc */
                        if (in_len < i)
                                return 0;

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/28507
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Id28bf61c5e1dfb6da1c89a5502eb869b67fed6c6
Gerrit-Change-Number: 28507
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <[email protected]>
Gerrit-MessageType: newchange

Reply via email to