- vc++ compile fix

This commit is contained in:
Mark Vejvoda 2011-01-16 03:56:10 +00:00
parent 1cc5f8c70e
commit 1dee0a134c
1 changed files with 2 additions and 1 deletions

View File

@ -486,7 +486,8 @@ int getLastSocketError() {
const char * getLastSocketErrorText(int *errNumber) {
int errId = (errNumber != NULL ? *errNumber : getLastSocketError());
return WSAGetLastErrorMessage("",errId);
//return WSAGetLastErrorMessage("",errId);
return "?";
}
#endif