mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-02-03 05:14:44 +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) {
|
if (err != 0) {
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
sprintf(buf, "%016" PRIX64, serial);
|
sprintf(buf, "%016" PRIX64, serial);
|
||||||
spdlog::error("Could not open Airspy HF+ {0}", buf);
|
spdlog::error("Could not open Airspy {0}", buf);
|
||||||
selectedSerial = 0;
|
selectedSerial = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -121,7 +121,7 @@ public:
|
|||||||
catch (std::exception e) {
|
catch (std::exception e) {
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
sprintf(buf, "%016" PRIX64, serial);
|
sprintf(buf, "%016" PRIX64, serial);
|
||||||
spdlog::error("Could not open Airspy HF+ {0}", buf);
|
spdlog::error("Could not open Airspy {0}", buf);
|
||||||
}
|
}
|
||||||
selectedSerial = serial;
|
selectedSerial = serial;
|
||||||
|
|
||||||
@ -240,7 +240,7 @@ private:
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (_this->selectedSerial == 0) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user