Merge "statusToString: parenthesize strerror"
This commit is contained in:
commit
b033ea31ad
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ std::string statusToString(status_t s) {
|
||||||
#undef STATUS_CASE
|
#undef STATUS_CASE
|
||||||
}
|
}
|
||||||
|
|
||||||
return std::to_string(s) + ' ' + strerror(-s);
|
return std::to_string(s) + " (" + strerror(-s) + ")";
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace android
|
} // namespace android
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue