aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--host/lib/transport/udp_zero_copy_asio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/transport/udp_zero_copy_asio.cpp b/host/lib/transport/udp_zero_copy_asio.cpp
index a87f17a91..7e28caf2d 100644
--- a/host/lib/transport/udp_zero_copy_asio.cpp
+++ b/host/lib/transport/udp_zero_copy_asio.cpp
@@ -246,11 +246,11 @@ template<typename Opt> static void resize_buff_helper(
"Current %s sock buff size: %d bytes"
) % name % actual_size << std::endl;
if (actual_size < target_size) uhd::print_warning(str(boost::format(
- "The %s buffer is smaller than the requested size.\n"
- "The minimum recommended buffer size is %d bytes.\n"
+ "The %1% buffer is smaller than the requested size.\n"
+ "The minimum recommended buffer size is %2% bytes.\n"
"See the transport application notes on buffer resizing.\n"
#if defined(UHD_PLATFORM_LINUX)
- "On Linux: sudo sysctl -w net.core.rmem_max=%2%\n"
+ "Please run: sudo sysctl -w net.core.rmem_max=%2%\n"
#endif /*defined(UHD_PLATFORM_LINUX)*/
) % name % min_sock_buff_size));
}