getNetErrorCode on Linux should not display anything if ret >= 0
This commit is contained in:
parent
40e6e9b9fa
commit
d5dd80931a
|
@ -538,6 +538,9 @@ static int getNetErrorCode(int ret, std::string caller, bool isRW)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
if (ret >= 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
WARN_LOG(WII_IPC_NET, "%s failed with error %d: %s, ret= %d",
|
WARN_LOG(WII_IPC_NET, "%s failed with error %d: %s, ret= %d",
|
||||||
caller.c_str(), 0x1337, "hmm", ret);
|
caller.c_str(), 0x1337, "hmm", ret);
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue