summaryrefslogtreecommitdiff
path: root/usrp/host/lib
diff options
context:
space:
mode:
authorjcorgan2009-01-08 23:50:42 +0000
committerjcorgan2009-01-08 23:50:42 +0000
commita690f8b5cd6865809afff74d2cc85d76c48eb641 (patch)
tree9b3bffcad538e7e3d426d2b92772fcc4f7dbc99b /usrp/host/lib
parent1a68a69e67e72842f815bcc4a2af466118cde382 (diff)
downloadgnuradio-a690f8b5cd6865809afff74d2cc85d76c48eb641.tar.gz
gnuradio-a690f8b5cd6865809afff74d2cc85d76c48eb641.tar.bz2
gnuradio-a690f8b5cd6865809afff74d2cc85d76c48eb641.zip
Fix sign error in XCVR2450 code
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10201 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp/host/lib')
-rw-r--r--usrp/host/lib/legacy/db_xcvr2450.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/usrp/host/lib/legacy/db_xcvr2450.cc b/usrp/host/lib/legacy/db_xcvr2450.cc
index e0c3f91c2..c86b865f5 100644
--- a/usrp/host/lib/legacy/db_xcvr2450.cc
+++ b/usrp/host/lib/legacy/db_xcvr2450.cc
@@ -607,7 +607,7 @@ _get_or_make_xcvr2450(usrp_basic_sptr usrp, int which)
}
}
- if(itr != _xcvr2450_inst.end()) {
+ if(itr == _xcvr2450_inst.end()) {
printf("Creating new xcvr2450 instance\n");
inst = xcvr2450_sptr(new xcvr2450(usrp, which));
_xcvr2450_inst.push_back(inst);