diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-03-11 16:14:00 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-03-11 16:58:09 -0700 |
commit | fae746179cbb1d8ac146dcae9b5d6cb58b366a56 (patch) | |
tree | f3b7db3841f84ded03e97b7020cb0616294b4579 /host/utils/b2xx_fx3_utils.cpp | |
parent | eed305afee7c5c34a48efd75dfb49ba20072f518 (diff) | |
download | uhd-fae746179cbb1d8ac146dcae9b5d6cb58b366a56.tar.gz uhd-fae746179cbb1d8ac146dcae9b5d6cb58b366a56.tar.bz2 uhd-fae746179cbb1d8ac146dcae9b5d6cb58b366a56.zip |
uhd: Fixed multiple compiler warnings (unused variables, missing literal f)
Diffstat (limited to 'host/utils/b2xx_fx3_utils.cpp')
-rw-r--r-- | host/utils/b2xx_fx3_utils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/utils/b2xx_fx3_utils.cpp b/host/utils/b2xx_fx3_utils.cpp index 8b64be63e..572daef70 100644 --- a/host/utils/b2xx_fx3_utils.cpp +++ b/host/utils/b2xx_fx3_utils.cpp @@ -173,7 +173,7 @@ uhd::transport::usb_device_handle::sptr open_device(const boost::uint16_t vid, c if (!handle) std::cerr << "Cannot open device" << std::endl; } - catch(const std::exception &e) { + catch(const std::exception &) { std::cerr << "Failed to communicate with the device!" << std::endl; #ifdef UHD_PLATFORM_WIN32 std::cerr << "The necessary drivers are not installed. Read the UHD Transport Application Notes for details:\nhttp://files.ettus.com/manual/page_transport.html" << std::endl; @@ -195,7 +195,7 @@ b200_iface::sptr make_b200_iface(const uhd::transport::usb_device_handle::sptr & if (!b200) std::cerr << "Cannot create device interface" << std::endl; } - catch(const std::exception &e) { + catch(const std::exception &) { std::cerr << "Failed to communicate with the device!" << std::endl; #ifdef UHD_PLATFORM_WIN32 std::cerr << "The necessary drivers are not installed. Read the UHD Transport Application Notes for details:\nhttp://files.ettus.com/manual/page_transport.html" << std::endl; |