diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-09-13 09:53:52 -0700 |
---|---|---|
committer | michael-west <michael.west@ettus.com> | 2017-12-19 17:30:32 -0800 |
commit | af2ea27551d74d631c9645cbaa9d96c8a5ec74d3 (patch) | |
tree | 58648a3aa9c810dcaff83329939f92738e498d08 /host/lib | |
parent | f8701eb80d9fd3bf8ce2997041c864e27790b043 (diff) | |
download | uhd-af2ea27551d74d631c9645cbaa9d96c8a5ec74d3.tar.gz uhd-af2ea27551d74d631c9645cbaa9d96c8a5ec74d3.tar.bz2 uhd-af2ea27551d74d631c9645cbaa9d96c8a5ec74d3.zip |
rfnoc: Fixed seq # error message in ctrl_iface
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/rfnoc/ctrl_iface.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/host/lib/rfnoc/ctrl_iface.cpp b/host/lib/rfnoc/ctrl_iface.cpp index 288f3f065..35682aa29 100644 --- a/host/lib/rfnoc/ctrl_iface.cpp +++ b/host/lib/rfnoc/ctrl_iface.cpp @@ -280,9 +280,10 @@ private: if (packet_info.packet_count != (seq_to_ack & 0xfff)) { throw uhd::io_error( str( - boost::format("Expected packet index: %d Received index: %d") - % packet_info.packet_count + boost::format("Expected packet index: %d " \ + "Received index: %d") % (seq_to_ack & 0xfff) + % packet_info.packet_count ) ); } |