getNetErrorCode on Linux should not display anything if ret >= 0

This commit is contained in:
Pierre Bourdon 2012-02-18 10:22:00 +01:00
parent 40e6e9b9fa
commit d5dd80931a
1 changed files with 3 additions and 0 deletions

View File

@ -538,6 +538,9 @@ static int getNetErrorCode(int ret, std::string caller, bool isRW)
return -1;
}
#else
if (ret >= 0)
return ret;
WARN_LOG(WII_IPC_NET, "%s failed with error %d: %s, ret= %d",
caller.c_str(), 0x1337, "hmm", ret);
return ret;