Skip to content

Commit

Permalink
Fix macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
cozycactus committed Oct 22, 2024
1 parent f41dd39 commit 22d64b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qtgui/ioconfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ void CIoConfig::getDeviceList(std::map<QString, QVariant> &devList)

// Get list of input devices discovered by gr-soapy and store them in
// the device list together with the device descriptor strings
std::vector<SoapySDR::Kwargs> devices = SoapySDR::Device::enumerate();
std::vector<SoapySDR::Kwargs> devs = SoapySDR::Device::enumerate();

qDebug() << __FUNCTION__ << ": Available input devices:";
for (const auto &dev : devices)
for (const auto &dev : devs)
{
// Get the device label
if (dev.count("label"))
Expand Down

0 comments on commit 22d64b2

Please sign in to comment.