aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/test_timed_commands.cpp
diff options
context:
space:
mode:
authorBen Hilburn <ben.hilburn@ettus.com>2014-04-10 13:06:52 -0700
committerBen Hilburn <ben.hilburn@ettus.com>2014-04-10 13:06:52 -0700
commitdd07f5b40c822febde400cec817f7e8eddf860f2 (patch)
tree3120ebb0b6b4e76c5dd33e2db3b5def2de410b2d /host/examples/test_timed_commands.cpp
parentd3459ad697b4c38354731eb6e6fc1075b194d5ea (diff)
parent853901782f07b62bf774551c344a65606e545a4f (diff)
downloaduhd-dd07f5b40c822febde400cec817f7e8eddf860f2.tar.gz
uhd-dd07f5b40c822febde400cec817f7e8eddf860f2.tar.bz2
uhd-dd07f5b40c822febde400cec817f7e8eddf860f2.zip
Merge branch 'origin/uhd/issue_294_errcode'
Convert numeric errors to PP strings that are actually useful.
Diffstat (limited to 'host/examples/test_timed_commands.cpp')
-rw-r--r--host/examples/test_timed_commands.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/examples/test_timed_commands.cpp b/host/examples/test_timed_commands.cpp
index 8c6011c68..3da4bc707 100644
--- a/host/examples/test_timed_commands.cpp
+++ b/host/examples/test_timed_commands.cpp
@@ -139,8 +139,8 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
const size_t num_rx_samps = rx_stream->recv(&buff.front(), buff.size(), md, 1.0);
if (md.error_code != uhd::rx_metadata_t::ERROR_CODE_NONE){
throw std::runtime_error(str(boost::format(
- "Unexpected error code 0x%x"
- ) % md.error_code));
+ "Receiver error %s"
+ ) % md.strerror()));
}
std::cout << boost::format(
" Received packet: %u samples, %u full secs, %f frac secs"