Fix cppcheck warning in kpa.c

pull/155/head
Michael Black 2019-12-18 17:22:15 -06:00
rodzic ba7d3645fc
commit efb6edcb52
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6599353EC683404D
1 zmienionych plików z 0 dodań i 4 usunięć

Wyświetl plik

@ -133,7 +133,6 @@ int kpa_transaction(AMP *amp, const char *cmd, char *response, int response_len)
if (response) // if response expected get it
{
int len;
responsebuf[0] = 0;
len = read_string(&rs->ampport, responsebuf, KPABUFSZ, ";", 1);
@ -153,7 +152,6 @@ int kpa_transaction(AMP *amp, const char *cmd, char *response, int response_len)
do
{
int len;
char c = ';';
rig_debug(RIG_DEBUG_VERBOSE, "%s waiting for ;\n", __func__);
err = write_block(&rs->ampport, &c, 1);
@ -273,8 +271,6 @@ int kpa_get_level(AMP *amp, setting_t level, value_t *val)
rig_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__);
if (!amp) { return -RIG_EINVAL; }
// get the current antenna selected
cmd = "^AE;";
retval = kpa_transaction(amp, cmd, responsebuf, sizeof(responsebuf));