diff options
Diffstat (limited to 'libutils/Errors.cpp')
-rw-r--r-- | libutils/Errors.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libutils/Errors.cpp b/libutils/Errors.cpp index 2dfd138f8..74f3befac 100644 --- a/libutils/Errors.cpp +++ b/libutils/Errors.cpp @@ -45,7 +45,7 @@ std::string statusToString(status_t s) { #undef STATUS_CASE } - return std::to_string(s) + ' ' + strerror(-s); + return std::to_string(s) + " (" + strerror(-s) + ")"; } } // namespace android |