diff options
Diffstat (limited to 'src/OSSupport/GetAddressInfoError.h')
-rw-r--r-- | src/OSSupport/GetAddressInfoError.h | 35 |
1 files changed, 16 insertions, 19 deletions
diff --git a/src/OSSupport/GetAddressInfoError.h b/src/OSSupport/GetAddressInfoError.h index 43869fb63..3dbefb426 100644 --- a/src/OSSupport/GetAddressInfoError.h +++ b/src/OSSupport/GetAddressInfoError.h @@ -5,25 +5,22 @@ /** Returns the readable form of a getaddressinfo type error code */ inline AString ErrorString(int a_ErrorCode) { - // Note gai_strerror is not threadsafe on windows - #ifdef _WIN32 - char ErrorStr[GAI_STRERROR_BUFFER_SIZE + 1]; +// Note gai_strerror is not threadsafe on windows +#ifdef _WIN32 + char ErrorStr[GAI_STRERROR_BUFFER_SIZE + 1]; - int MsgLen = FormatMessageA( - FORMAT_MESSAGE_FROM_SYSTEM | - FORMAT_MESSAGE_IGNORE_INSERTS | - FORMAT_MESSAGE_MAX_WIDTH_MASK, - nullptr, - a_ErrorCode, - MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), - ErrorStr, - sizeof(ErrorStr) - 1, - nullptr - ); + int MsgLen = FormatMessageA( + FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS | FORMAT_MESSAGE_MAX_WIDTH_MASK, + nullptr, + a_ErrorCode, + MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), + ErrorStr, + sizeof(ErrorStr) - 1, + nullptr + ); - return AString(ErrorStr, MsgLen); - #else - return gai_strerror(a_ErrorCode); - #endif + return AString(ErrorStr, MsgLen); +#else + return gai_strerror(a_ErrorCode); +#endif } - |