summaryrefslogtreecommitdiffstats
path: root/host/lib/transport
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-07-08 17:55:49 -0700
committerJosh Blum <josh@joshknows.com>2011-07-08 17:55:49 -0700
commitbedd308e605f4772f156b13c702955422bfa87c5 (patch)
tree3ffda15a87fbf06af8aefac18db293c4d6a7a80a /host/lib/transport
parent7bc972a81ff9ba5e2568f4132346e806d6b8257a (diff)
downloaduhd-bedd308e605f4772f156b13c702955422bfa87c5.tar.gz
uhd-bedd308e605f4772f156b13c702955422bfa87c5.tar.bz2
uhd-bedd308e605f4772f156b13c702955422bfa87c5.zip
uhd: some tweaks to fix msvc warnings
Diffstat (limited to 'host/lib/transport')
-rw-r--r--host/lib/transport/libusb1_base.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/transport/libusb1_base.cpp b/host/lib/transport/libusb1_base.cpp
index 6d4df7875..9b4290c08 100644
--- a/host/lib/transport/libusb1_base.cpp
+++ b/host/lib/transport/libusb1_base.cpp
@@ -206,7 +206,7 @@ libusb::device_handle::sptr libusb::device_handle::get_cached_handle(device::spt
handles[dev->get()] = new_handle;
return new_handle;
}
- catch(const uhd::exception &e){
+ catch(const uhd::exception &){
std::cerr << "USB open failed: see the application notes for your device." << std::endl;
throw;
}