mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
Display errno in Linux getNetErrorCode defautl case
This commit is contained in:
@ -545,7 +545,7 @@ static int getNetErrorCode(int ret, std::string caller, bool isRW)
|
|||||||
return ret;
|
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(), errno, "hmm", ret);
|
||||||
return ret;
|
return ret;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user