Fix memset in kenwood.c

pull/90/head
Michael Black 2019-02-06 17:00:11 -06:00
rodzic 41580890a9
commit 2f3618e585
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -439,7 +439,7 @@ int kenwood_safe_transaction(RIG *rig, const char *cmd, char *buf,
int err;
int retry = 0;
memset(buf,buf_size,0);
memset(buf,0, buf_size);
if (expected == 0)
buf_size = 0;