diff options
author | michael-west <michael.west@ettus.com> | 2016-12-12 18:07:51 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-12-13 07:46:59 -0800 |
commit | fcce983e417b2868a1b66f435fad52780c9a2dc6 (patch) | |
tree | 30a7705aeb47e92857420f3380b5fd5cc0c2f0e8 /host/lib/usrp/device3 | |
parent | d5ba9fab6a5133bf6a1a88d9fae0f200b1993ba5 (diff) | |
download | uhd-fcce983e417b2868a1b66f435fad52780c9a2dc6.tar.gz uhd-fcce983e417b2868a1b66f435fad52780c9a2dc6.tar.bz2 uhd-fcce983e417b2868a1b66f435fad52780c9a2dc6.zip |
Fix typo causing channel list generation to fail.
Diffstat (limited to 'host/lib/usrp/device3')
-rw-r--r-- | host/lib/usrp/device3/device3_io_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/device3/device3_io_impl.cpp b/host/lib/usrp/device3/device3_io_impl.cpp index 386b4d66e..b4aac71bf 100644 --- a/host/lib/usrp/device3/device3_io_impl.cpp +++ b/host/lib/usrp/device3/device3_io_impl.cpp @@ -114,7 +114,7 @@ void generate_channel_list( if (args.args.has_key(key)) { chan_list_[i] = args.args.pop(key); } else if (args.args.has_key("block_id")) { - chan_list[i] = args.args["block_id"]; + chan_list_[i] = args.args["block_id"]; } else { throw uhd::runtime_error(str( boost::format("Cannot create streamers: No block_id specified for channel %d.") |