Merge "statusToString: parenthesize strerror"

am: b033ea31ad

Change-Id: I8fcb607cf3b24588bf873ca3ebe0c71ef9a790db
This commit is contained in:
Steven Moreland 2019-12-10 13:05:02 -08:00 committed by android-build-merger
commit aca5fcae52

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