diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2016-03-04 10:32:32 -0800 |
---|---|---|
committer | Nicholas Corgan <nick.corgan@ettus.com> | 2016-03-04 10:32:32 -0800 |
commit | e4792b00c88103bba9239bb5cabb10b95c4ae531 (patch) | |
tree | e28d9c82bcc8bbcf57dc453dc305b9dbcb893514 /host/lib/usrp/b200/b200_impl.cpp | |
parent | 7b268bdb82959dd1df3657697dc26594b1ffd2d6 (diff) | |
download | uhd-e4792b00c88103bba9239bb5cabb10b95c4ae531.tar.gz uhd-e4792b00c88103bba9239bb5cabb10b95c4ae531.tar.bz2 uhd-e4792b00c88103bba9239bb5cabb10b95c4ae531.zip |
Fixed minor warnings:
* nirio_driver_iface_win: labeled unused variable for MinGW builds
* b200_impl: fixed unreferenced variable warning
* n200_image_loader: fixed signed vs. unsigned comparison
Diffstat (limited to 'host/lib/usrp/b200/b200_impl.cpp')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp index 200d99aee..18dcdadba 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -348,7 +348,7 @@ b200_impl::b200_impl(const uhd::device_addr_t& device_addr, usb_device_handle::s handle = dev_handle; break; } - } catch (const uhd::exception &e) { continue; } + } catch (const uhd::exception&) { continue; } } UHD_ASSERT_THROW(handle.get() != NULL); //better be found |