Merge "statusToString: parenthesize strerror"
am: b033ea31ad
Change-Id: I8fcb607cf3b24588bf873ca3ebe0c71ef9a790db
This commit is contained in:
commit
aca5fcae52
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue