diff --git a/airspy_source/src/main.cpp b/airspy_source/src/main.cpp index 4f66b36..f54b0a2 100644 --- a/airspy_source/src/main.cpp +++ b/airspy_source/src/main.cpp @@ -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; } diff --git a/core/src/gui/widgets/folder_select.h b/core/src/gui/widgets/folder_select.h index 3fdeff0..86b4afb 100644 --- a/core/src/gui/widgets/folder_select.h +++ b/core/src/gui/widgets/folder_select.h @@ -6,7 +6,7 @@ #ifdef _WIN32 #include -#include +#include #include #endif