From c2bccc9b042de55c67ac1d34dcf66747a482f3c6 Mon Sep 17 00:00:00 2001 From: bvernoux Date: Fri, 16 Apr 2021 19:48:25 +0200 Subject: [PATCH] Fixed some typos in spdlog::error() for airspy_source (removed HF+) --- airspy_source/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/airspy_source/src/main.cpp b/airspy_source/src/main.cpp index 4f66b36d..f54b0a2b 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; }