diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-07-08 15:03:29 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-07-08 15:03:29 +0200 |
commit | 300be5dd99084a3f6f57ec41f2b365f17076c824 (patch) | |
tree | 2e3ceced0fbd3a521d65952dc151a2bc649af0f0 /src | |
parent | 29424c2c706de45d431d89d6901984c3cfc51f8d (diff) | |
download | dabmod-300be5dd99084a3f6f57ec41f2b365f17076c824.tar.gz dabmod-300be5dd99084a3f6f57ec41f2b365f17076c824.tar.bz2 dabmod-300be5dd99084a3f6f57ec41f2b365f17076c824.zip |
Fix Soapy error message
Diffstat (limited to 'src')
-rw-r--r-- | src/output/Soapy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |