diff options
author | Paul David <paul.david@ettus.com> | 2016-09-26 16:49:18 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-09-27 10:55:29 -0700 |
commit | 799446ba9b7517a9703ba05021eb8825ebe1ee61 (patch) | |
tree | 7a701b27b3ad9ddc277e9f13bac10532c507e105 /host/lib/usrp/b200 | |
parent | 2876c159ec268e70ade5139ac73b146fd00b83ca (diff) | |
download | uhd-799446ba9b7517a9703ba05021eb8825ebe1ee61.tar.gz uhd-799446ba9b7517a9703ba05021eb8825ebe1ee61.tar.bz2 uhd-799446ba9b7517a9703ba05021eb8825ebe1ee61.zip |
B2xx: fixed a typo when checking arguments on a streamer
Diffstat (limited to 'host/lib/usrp/b200')
-rw-r--r-- | host/lib/usrp/b200/b200_io_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b200/b200_io_impl.cpp b/host/lib/usrp/b200/b200_io_impl.cpp index 283091140..d1468332e 100644 --- a/host/lib/usrp/b200/b200_io_impl.cpp +++ b/host/lib/usrp/b200/b200_io_impl.cpp @@ -501,7 +501,7 @@ tx_streamer::sptr b200_impl::get_tx_stream(const uhd::stream_args_t &args_) if (_tree->access<bool>("/mboards/0/auto_tick_rate").get()) { set_auto_tick_rate(0, "", args.channels.size()); } - check_streamer_args(args, this->get_tick_rate(), "RX"); + check_streamer_args(args, this->get_tick_rate(), "TX"); boost::shared_ptr<sph::send_packet_streamer> my_streamer; for (size_t stream_i = 0; stream_i < args.channels.size(); stream_i++) |