cosmetic: use char literals in cfg_net_bsc_codec_list()

Change-Id: I1a29fb54cdcd15c6e9b6447d929db0e9492264f7
This commit is contained in:
Neels Hofmeyr 2023-03-01 00:14:38 +01:00 committed by neels
parent d4a0a2c36a
commit 91ab3fe5a0
1 changed files with 2 additions and 2 deletions

View File

@ -2718,8 +2718,8 @@ DEFUN_USRATTR(cfg_net_bsc_codec_list,
if (strlen(argv[i]) != 3
|| argv[i][1] != 'r'
|| (argv[i][0] != 'h' && argv[i][0] != 'f')
|| argv[i][2] < 0x30
|| argv[i][2] > 0x39)
|| argv[i][2] < '0'
|| argv[i][2] > '9')
goto error;
}