Merge branch 'master' of https://github.com/bagel99/Hamlib into bagel99-master

pull/30/head
Nate Bargmann 2018-05-10 16:41:54 -05:00
commit 99d7a76c20
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -265,7 +265,7 @@ static int thd72_set_freq(RIG *rig, vfo_t vfo, freq_t freq)
retval = thd72_get_freq_info(rig, vfo, buf); retval = thd72_get_freq_info(rig, vfo, buf);
if (retval != RIG_OK) if (retval != RIG_OK)
return retval; return retval;
sprintf(fbuf, "%010ld", (int64_t)freq); sprintf(fbuf, "%010"PRIll, (int64_t)freq);
memcpy(buf+5, fbuf, 10); memcpy(buf+5, fbuf, 10);
retval = kenwood_simple_transaction(rig, buf, 52); retval = kenwood_simple_transaction(rig, buf, 52);
return retval; return retval;