diff options
author | bunnei <bunneidev@gmail.com> | 2022-12-17 23:37:37 -0800 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 00:05:27 -0700 |
commit | cdbab60bbbe315075ad7666c2b164140e4acb44b (patch) | |
tree | 0936c10fe320c1f049b8f362f373df306c7db74a /src/common/error.cpp | |
parent | f8b87e6fabc9f9f202a7eb35f13d997165b9f94c (diff) |
common: error: Fix for Android.
Diffstat (limited to 'src/common/error.cpp')
-rw-r--r-- | src/common/error.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/error.cpp b/src/common/error.cpp index ddb03bd45..1b2009db7 100644 --- a/src/common/error.cpp +++ b/src/common/error.cpp @@ -30,7 +30,8 @@ std::string NativeErrorToString(int e) { return ret; #else char err_str[255]; -#if defined(__GLIBC__) && (_GNU_SOURCE || (_POSIX_C_SOURCE < 200112L && _XOPEN_SOURCE < 600)) +#if defined(ANDROID) || \ + (defined(__GLIBC__) && (_GNU_SOURCE || (_POSIX_C_SOURCE < 200112L && _XOPEN_SOURCE < 600))) // Thread safe (GNU-specific) const char* str = strerror_r(e, err_str, sizeof(err_str)); return std::string(str); |