fix(rtlsdr_wsprd.c): exit 0 after read file

pull/72/head
Guenael 2021-12-11 02:09:36 -05:00
rodzic a56b734728
commit da159896a7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -818,7 +818,7 @@ int main(int argc, char **argv) {
if (rx_options.readfile == true) {
fprintf(stdout, "Reading IQ file: %s\n", rx_options.filename);
decodeRecordedFile(rx_options.filename);
exit(1);
exit(0);
}
if (rx_options.writefile == true) {