diff options
author | android-build-team Robot <android-build-team-robot@google.com> | 2019-12-11 04:14:16 +0000 |
---|---|---|
committer | android-build-team Robot <android-build-team-robot@google.com> | 2019-12-11 04:14:16 +0000 |
commit | 6dbccbb66fc84803bb4238a2fc505993d98dea54 (patch) | |
tree | 944f49697e19af0879afd3f4186883f77951edb7 /libutils/Errors.cpp | |
parent | dec567ea6a67d78492b306f1d78b8552df688873 (diff) | |
parent | 35f8f1575d8125af0a3cbd146dcbb4a2cf1c5812 (diff) |
Snap for 6063671 from 35f8f1575d8125af0a3cbd146dcbb4a2cf1c5812 to rvc-release
Change-Id: Ibb7038e59e74f1f115263822c539e6423bc8844e
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 |