Fixed issue #245

pull/254/head
gabime 9 years ago
parent 01601cef85
commit 1ac68e399a

@ -264,7 +264,7 @@ inline std::string errno_str(int err_num)
else else
return "Unkown error"; return "Unkown error";
#elif (_POSIX_C_SOURCE >= 200112L) && ! _GNU_SOURCE // posix version #elif defined(__APPLE__) || ((_POSIX_C_SOURCE >= 200112L) && ! _GNU_SOURCE) // posix version
if (strerror_r(err_num, buf, buf_size) == 0) if (strerror_r(err_num, buf, buf_size) == 0)
return std::string(buf); return std::string(buf);
else else

Loading…
Cancel
Save