dirty buildfix for linux, can do it properly later.

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@1193 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
squall-leonhart 2013-04-06 18:33:15 +00:00
parent 544838a5d1
commit 75017d0957
1 changed files with 4 additions and 0 deletions

View File

@ -75,7 +75,11 @@ bool remoteTcpInit()
remoteListenSocket = s;
#ifdef _WIN32
if(s == INVALID_SOCKET) {
#else
if(s < 0) {
#endif
fprintf(stderr,"Error opening socket\n");
exit(-1);
}