1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Silence some type mismatch warnings.

This commit is contained in:
Bartosz Taudul
2017-10-16 20:42:53 +02:00
parent 3554e4c4ac
commit 31fc2335dd
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ int Socket::Send( const void* _buf, int len )
len -= ret;
buf += ret;
}
return buf - start;
return int( buf - start );
}
int Socket::Recv( void* _buf, int len, const timeval* tv )