diff options
author | Josh Blum <josh@joshknows.com> | 2010-03-19 18:08:20 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-03-19 18:08:20 -0800 |
commit | 26ada5ee709fc4d7e195d19720b467c14368bc05 (patch) | |
tree | fed7199054d8ae3860fb11499fb199a69ef9336a /host/lib/usrp/usrp2/usrp2_impl.cpp | |
parent | 9c436f72cd065c172b04bcefcca71e80591059c6 (diff) | |
download | uhd-26ada5ee709fc4d7e195d19720b467c14368bc05.tar.gz uhd-26ada5ee709fc4d7e195d19720b467c14368bc05.tar.bz2 uhd-26ada5ee709fc4d7e195d19720b467c14368bc05.zip |
added install path for dll, fixed idiotic msvc error where making a vector with proxies crashes the app, seems to be ok with the sptr fix, in other good news, discover usrps works in my vm for the usrp2
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_impl.cpp b/host/lib/usrp/usrp2/usrp2_impl.cpp index 22b7e109f..bdf8cc55b 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.cpp +++ b/host/lib/usrp/usrp2/usrp2_impl.cpp @@ -191,7 +191,7 @@ void usrp2_impl::get(const wax::obj &key_, wax::obj &val){ case DEVICE_PROP_MBOARD: ASSERT_THROW(_mboards.has_key(name)); - val = _mboards[name].get_link(); + val = _mboards[name]->get_link(); return; case DEVICE_PROP_MBOARD_NAMES: |