aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/socket/socket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/utils/socket/socket.cpp')
-rw-r--r--src/lib/utils/socket/socket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/socket/socket.cpp b/src/lib/utils/socket/socket.cpp
index b75b4981c..1caeb2413 100644
--- a/src/lib/utils/socket/socket.cpp
+++ b/src/lib/utils/socket/socket.cpp
@@ -83,7 +83,7 @@ class Asio_Socket final : public OS::Socket
boost::system::error_code ec = boost::asio::error::would_block;
boost::asio::async_write(m_tcp, boost::asio::buffer(buf, len),
- [&ec](boost::system::error_code e, size_t got) { printf("wrote %d\n", got); ec = e; });
+ [&ec](boost::system::error_code e, size_t got) { ec = e; });
while(ec == boost::asio::error::would_block) { m_io.run_one(); }