diff options
author | Andrej Rode <andrej.rode@ettus.com> | 2017-04-06 11:53:48 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-04-07 14:54:03 -0700 |
commit | c1a8f73a008981ea4b0cc841474f20bc704be29d (patch) | |
tree | 8a13d1af27dd63c5dd755f9de889a5fdadd98470 /host/lib/transport | |
parent | 543c8c40f1aab7e7c394af4e1195a722fa0a047e (diff) | |
download | uhd-c1a8f73a008981ea4b0cc841474f20bc704be29d.tar.gz uhd-c1a8f73a008981ea4b0cc841474f20bc704be29d.tar.bz2 uhd-c1a8f73a008981ea4b0cc841474f20bc704be29d.zip |
logging: remove unecessery newlines in log messages
Diffstat (limited to 'host/lib/transport')
-rw-r--r-- | host/lib/transport/udp_zero_copy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/transport/udp_zero_copy.cpp b/host/lib/transport/udp_zero_copy.cpp index f89cfc92e..f03919f31 100644 --- a/host/lib/transport/udp_zero_copy.cpp +++ b/host/lib/transport/udp_zero_copy.cpp @@ -272,7 +272,7 @@ template<typename Opt> static size_t resize_buff_helper( std::string help_message; #if defined(UHD_PLATFORM_LINUX) help_message = str(boost::format( - "Please run: sudo sysctl -w net.core.%smem_max=%d\n" + "Please run: sudo sysctl -w net.core.%smem_max=%d" ) % ((name == "recv")?"r":"w") % target_size); #endif /*defined(UHD_PLATFORM_LINUX)*/ |