neels has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-bsc/+/31604 )


Change subject: cosmetic: use i++ instead of ++i in for loop
......................................................................

cosmetic: use i++ instead of ++i in for loop

Change-Id: I9903e54e3eb59db9b9cd22e017bc81b9b86e01e9
---
M src/osmo-bsc/bsc_vty.c
1 file changed, 10 insertions(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/04/31604/1

diff --git a/src/osmo-bsc/bsc_vty.c b/src/osmo-bsc/bsc_vty.c
index a3ba143..fd08ff5 100644
--- a/src/osmo-bsc/bsc_vty.c
+++ b/src/osmo-bsc/bsc_vty.c
@@ -2713,7 +2713,7 @@
        int i;

        /* check all given arguments first */
-       for (i = 0; i < argc; ++i) {
+       for (i = 0; i < argc; i++) {
                /* check for hrX or frX */
                if (strlen(argv[i]) != 3
                                || argv[i][1] != 'r'

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

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I9903e54e3eb59db9b9cd22e017bc81b9b86e01e9
Gerrit-Change-Number: 31604
Gerrit-PatchSet: 1
Gerrit-Owner: neels <[email protected]>
Gerrit-MessageType: newchange

Reply via email to