From 4409320699465bb7434ad78e76761fe1914d34b0 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Wed, 13 Sep 2017 09:53:52 -0700 Subject: rfnoc: Fixed seq # error message in ctrl_iface --- host/lib/rfnoc/ctrl_iface.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'host/lib/rfnoc/ctrl_iface.cpp') diff --git a/host/lib/rfnoc/ctrl_iface.cpp b/host/lib/rfnoc/ctrl_iface.cpp index 6c2586ebd..29da42370 100644 --- a/host/lib/rfnoc/ctrl_iface.cpp +++ b/host/lib/rfnoc/ctrl_iface.cpp @@ -241,9 +241,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 ) ); } -- cgit v1.2.3