Fix cppcheck style

pull/1354/head
Mike Black W9MDB 2023-08-02 23:33:05 -05:00
rodzic 17c5a8aed9
commit aa3cf89886
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -287,6 +287,10 @@ int ic7100_get_clock(RIG *rig, int *year, int *month, int *day, int *hour,
prmbuf[0] = 0x01;
prmbuf[1] = 0x23;
retval = icom_transaction(rig, cmd, subcmd, prmbuf, 2, respbuf, &resplen);
if (retval != RIG_OK)
{
return retval;
}
*utc_offset = from_bcd(&respbuf[4], 2) * 100;
*utc_offset += from_bcd(&respbuf[5], 2);