Fixed code style

This commit is contained in:
AlexandreRouma 2021-07-13 21:12:07 +02:00 committed by GitHub
parent 6583104a96
commit c0f3babc49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -228,8 +228,8 @@ private:
return; return;
} }
auto err = static_cast<hackrf_error>(hackrf_open_by_serial(_this->selectedSerial.c_str(), &_this->openDev)); int err = hackrf_open_by_serial(_this->selectedSerial.c_str(), &_this->openDev);
if (err != hackrf_error::HACKRF_SUCCESS) { if (err != HACKRF_SUCCESS) {
spdlog::error("Could not open HackRF {0}: {1}", _this->selectedSerial, hackrf_error_name(err)); spdlog::error("Could not open HackRF {0}: {1}", _this->selectedSerial, hackrf_error_name(err));
return; return;
} }
@ -257,8 +257,8 @@ private:
_this->running = false; _this->running = false;
_this->stream.stopWriter(); _this->stream.stopWriter();
// TODO: Stream stop // TODO: Stream stop
auto err = static_cast<hackrf_error>(hackrf_close(_this->openDev)); int err = hackrf_close(_this->openDev);
if (err != hackrf_error::HACKRF_SUCCESS) { if (err != HACKRF_SUCCESS) {
spdlog::error("Could not close HackRF {0}: {1}", _this->selectedSerial, hackrf_error_name(err)); spdlog::error("Could not close HackRF {0}: {1}", _this->selectedSerial, hackrf_error_name(err));
} }
_this->stream.clearWriteStop(); _this->stream.clearWriteStop();