Fix missing semicolon in rig.c and rigctl_parse.c

pull/1031/head
Mike Black W9MDB 2022-05-13 11:09:30 -05:00
rodzic 066978ed15
commit 49cbc18e19
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -655,7 +655,7 @@ int main(int argc, char *argv[])
if (retcode < 0 && !RIG_IS_SOFT_ERRCODE(-retcode))
{
int retry = 3;
rig_debug(RIG_DEBUG_ERR, "%s: i/o error\n", __func__)
rig_debug(RIG_DEBUG_ERR, "%s: i/o error\n", __func__);
do
{

Wyświetl plik

@ -1703,7 +1703,7 @@ readline_repeat:
if (use_password && !is_passwordOK && (cmd_entry->arg1 != NULL) && !preCmd)
{
rig_debug(RIG_DEBUG_ERR, "%s: password has not been provided\n", __func__)
rig_debug(RIG_DEBUG_ERR, "%s: password has not been provided\n", __func__);
fflush(fin);
retcode = -RIG_ESECURITY;
}