aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-09-13 09:53:52 -0700
committerMartin Braun <martin.braun@ettus.com>2017-09-28 17:49:39 -0700
commit4409320699465bb7434ad78e76761fe1914d34b0 (patch)
treea237310ce41f0bf1a0d8b475311c0d930d87c8ae /host/lib/rfnoc
parent2761c5a914b52d87f3d8cc903f0cee2e4fbf8d52 (diff)
downloaduhd-4409320699465bb7434ad78e76761fe1914d34b0.tar.gz
uhd-4409320699465bb7434ad78e76761fe1914d34b0.tar.bz2
uhd-4409320699465bb7434ad78e76761fe1914d34b0.zip
rfnoc: Fixed seq # error message in ctrl_iface
Diffstat (limited to 'host/lib/rfnoc')
-rw-r--r--host/lib/rfnoc/ctrl_iface.cpp5
1 files changed, 3 insertions, 2 deletions
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
)
);
}