diff options
-rw-r--r-- | host/lib/usrp/x300/x300_io_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/x300/x300_io_impl.cpp b/host/lib/usrp/x300/x300_io_impl.cpp index 500a24f7f..c5b8f49e3 100644 --- a/host/lib/usrp/x300/x300_io_impl.cpp +++ b/host/lib/usrp/x300/x300_io_impl.cpp @@ -532,7 +532,7 @@ tx_streamer::sptr x300_impl::get_tx_stream(const uhd::stream_args_t &args_) //setup defaults for unspecified values if (not args.otw_format.empty() and args.otw_format != "sc16") { - throw uhd::value_error("x300_impl::get_rx_stream only supports otw_format sc16"); + throw uhd::value_error("x300_impl::get_tx_stream only supports otw_format sc16"); } args.otw_format = "sc16"; args.channels = args.channels.empty()? std::vector<size_t>(1, 0) : args.channels; |