Merge "statusToString: parenthesize strerror"

This commit is contained in:
Steven Moreland 2019-12-10 20:57:10 +00:00 committed by Gerrit Code Review
commit b033ea31ad

View file

@ -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