Fix OSX build

This commit is contained in:
falkTX 2018-11-24 14:29:58 +01:00
parent c5a16d0ed3
commit d851fada46
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ namespace Jack
int JackNetUnixSocket::Bind()
{
return bind(fSockfd, reinterpret_cast<socket_address_t*>(&fRecvAddr), sizeof(socket_address_t));
return ::bind(fSockfd, reinterpret_cast<socket_address_t*>(&fRecvAddr), sizeof(socket_address_t));
}
int JackNetUnixSocket::BindWith(const char* ip)