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

Change-Id: I9903e54e3eb59db9b9cd22e017bc81b9b86e01e9
This commit is contained in:
Neels Hofmeyr 2023-03-01 00:17:12 +01:00 committed by neels
parent 91ab3fe5a0
commit 8b55573a73
1 changed files with 1 additions and 1 deletions

View File

@ -2713,7 +2713,7 @@ DEFUN_USRATTR(cfg_net_bsc_codec_list,
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'