summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/socket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/socket.cpp b/src/socket.cpp
index e9305ec8d..2ab7d7a57 100644
--- a/src/socket.cpp
+++ b/src/socket.cpp
@@ -271,7 +271,7 @@ bool InspSocket::FlushWriteBuffer()
{
if (outbuffer.size())
{
- log(DEBUG,"Writing %d to socket",outbuffer.size())
+ log(DEBUG,"Writing %d to socket",outbuffer.size());
int result = write(this->fd,outbuffer[0].c_str(),outbuffer[0].length());
if (result > 0)
{