diff options
Diffstat (limited to 'host')
-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 ) ); } |