Make var const in optoscan.c

pull/799/head
Mike Black W9MDB 2021-09-11 09:56:52 -05:00
rodzic ecea9da847
commit c3f9f20aa8
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -244,7 +244,7 @@ int optoscan_recv_dtmf(RIG *rig, vfo_t vfo, char *digits, int *length)
{
unsigned char dtmfbuf[MAXFRAMELEN], digit;
int len, digitpos;
unsigned char xlate[] = {'0', '1', '2', '3', '4', '5', '6',
const unsigned char xlate[] = {'0', '1', '2', '3', '4', '5', '6',
'7', '8', '9', 'A', 'B', 'C', 'D',
'*', '#'
};