summaryrefslogtreecommitdiff
path: root/drivers/unix/stream_peer_tcp_posix.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-01-14 16:23:01 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-01-14 16:23:01 +0100
commit479790a841f3c55515eefcadce0c8e6de23d48f8 (patch)
tree8480cb6d3f57bf8fd7a8f87d5e92d54d13b3f371 /drivers/unix/stream_peer_tcp_posix.cpp
parent7c4167de64bf6804d3a40042a0961653886d8c03 (diff)
StreamPeerWinsock: Fix changed declarations
Bug introduced in dcb95ec1473eff3f455909cd81c3cd50b1e1159b.
Diffstat (limited to 'drivers/unix/stream_peer_tcp_posix.cpp')
-rw-r--r--drivers/unix/stream_peer_tcp_posix.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/unix/stream_peer_tcp_posix.cpp b/drivers/unix/stream_peer_tcp_posix.cpp
index b494de6744..82f3115f4b 100644
--- a/drivers/unix/stream_peer_tcp_posix.cpp
+++ b/drivers/unix/stream_peer_tcp_posix.cpp
@@ -218,7 +218,7 @@ Error StreamPeerTCPPosix::write(const uint8_t* p_data,int p_bytes, int &r_sent,
perror("shit?");
disconnect_from_host();
- ERR_PRINT("Server disconnect_from_hosted!\n");
+ ERR_PRINT("Server disconnected!\n");
return FAILED;
};
@@ -275,7 +275,7 @@ Error StreamPeerTCPPosix::read(uint8_t* p_buffer, int p_bytes,int &r_received, b
perror("shit?");
disconnect_from_host();
- ERR_PRINT("Server disconnect_from_hosted!\n");
+ ERR_PRINT("Server disconnected!\n");
return FAILED;
};