From 300be5dd99084a3f6f57ec41f2b365f17076c824 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Thu, 8 Jul 2021 15:03:29 +0200 Subject: Fix Soapy error message --- src/output/Soapy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/Soapy.cpp b/src/output/Soapy.cpp index 084591f..f138e9a 100644 --- a/src/output/Soapy.cpp +++ b/src/output/Soapy.cpp @@ -345,7 +345,7 @@ void Soapy::transmit_frame(const struct FrameData& frame) int ret_deact = m_device->deactivateStream(m_tx_stream); if (ret_deact != 0) { throw std::runtime_error( - string("Soapy activate TX stream failed: ") + + string("Soapy deactivate TX stream failed: ") + SoapySDR::errToStr(ret_deact)); } m_tx_stream_active = false; -- cgit v1.2.3