mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-02-02 21:04:45 +01:00
Fixed some typos in spdlog::error() for airspy_source (removed HF+)
This commit is contained in:
parent
0b9d5c2b69
commit
c2bccc9b04
@ -113,7 +113,7 @@ public:
|
||||
if (err != 0) {
|
||||
char buf[1024];
|
||||
sprintf(buf, "%016" PRIX64, serial);
|
||||
spdlog::error("Could not open Airspy HF+ {0}", buf);
|
||||
spdlog::error("Could not open Airspy {0}", buf);
|
||||
selectedSerial = 0;
|
||||
return;
|
||||
}
|
||||
@ -121,7 +121,7 @@ public:
|
||||
catch (std::exception e) {
|
||||
char buf[1024];
|
||||
sprintf(buf, "%016" PRIX64, serial);
|
||||
spdlog::error("Could not open Airspy HF+ {0}", buf);
|
||||
spdlog::error("Could not open Airspy {0}", buf);
|
||||
}
|
||||
selectedSerial = serial;
|
||||
|
||||
@ -240,7 +240,7 @@ private:
|
||||
return;
|
||||
}
|
||||
if (_this->selectedSerial == 0) {
|
||||
spdlog::error("Tried to start AirspyHF+ source with null serial");
|
||||
spdlog::error("Tried to start Airspy source with null serial");
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user