summaryrefslogtreecommitdiff
path: root/src/network
diff options
context:
space:
mode:
Diffstat (limited to 'src/network')
-rw-r--r--src/network/core/tcp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/tcp.cpp b/src/network/core/tcp.cpp
index cdf072cec..77afac131 100644
--- a/src/network/core/tcp.cpp
+++ b/src/network/core/tcp.cpp
@@ -238,7 +238,7 @@ bool NetworkTCPSocketHandler::CanSendReceive()
#endif
this->writable = !!FD_ISSET(this->sock, &write_fd);
- return FD_ISSET(this->sock, &read_fd);
+ return FD_ISSET(this->sock, &read_fd) != 0;
}
#endif /* ENABLE_NETWORK */