Change sprintf to SNPRINTF in icmarine

https://github.com/Hamlib/Hamlib/issues/857
pull/943/head
Mike Black W9MDB 2022-01-18 23:20:56 -06:00
rodzic 265ac88646
commit f90af0d054
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -366,7 +366,7 @@ int icm710_get_conf2(RIG *rig, token_t token, char *val, int val_len)
switch (token)
{
case TOK_REMOTEID:
snprintf(val, val_len, "%u", priv->remote_id);
SNPRINTF(val, val_len, "%u", priv->remote_id);
break;
default: