mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-14 06:16:35 +00:00
Get rid of G++ compiler warning.
This commit is contained in:
parent
604576075e
commit
105e1a016f
@ -508,7 +508,7 @@ public:
|
||||
long sent = _phy.tcpSend(sock,tc->writeBuf.data(),tc->writeBuf.length(),true);
|
||||
if (sent > 0) {
|
||||
tc->lastActivity = OSUtils::now();
|
||||
if (sent == tc->writeBuf.length()) {
|
||||
if ((unsigned long)sent == (unsigned long)tc->writeBuf.length()) {
|
||||
tc->writeBuf = "";
|
||||
_phy.tcpSetNotifyWritable(sock,false);
|
||||
if (!tc->shouldKeepAlive)
|
||||
|
Loading…
x
Reference in New Issue
Block a user