From a690f8b5cd6865809afff74d2cc85d76c48eb641 Mon Sep 17 00:00:00 2001 From: jcorgan Date: Thu, 8 Jan 2009 23:50:42 +0000 Subject: Fix sign error in XCVR2450 code git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10201 221aa14e-8319-0410-a670-987f0aec2ac5 --- usrp/host/lib/legacy/db_xcvr2450.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usrp/host/lib') 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); -- cgit