mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-25 23:25:41 +00:00
Error: Fix errno resolving on Win32
This commit is contained in:
parent
dd1a00674d
commit
6bfd498e31
|
@ -33,7 +33,7 @@ void Error::SetErrno(int err)
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
char buf[128];
|
char buf[128];
|
||||||
if (strerror_s(buf, sizeof(buf), err) != 0)
|
if (strerror_s(buf, sizeof(buf), err) == 0)
|
||||||
m_description = fmt::format("errno {}: {}", err, buf);
|
m_description = fmt::format("errno {}: {}", err, buf);
|
||||||
else
|
else
|
||||||
m_description = fmt::format("errno {}: <Could not get error message>", err);
|
m_description = fmt::format("errno {}: <Could not get error message>", err);
|
||||||
|
|
Loading…
Reference in a new issue