Update fmtlib to 10.1.1
Test: m Change-Id: I1f23ea1a07c792c3b4974414aef9aeb9ae8f11d7
This commit is contained in:
parent
d1e286f12f
commit
6bdb5f86cd
1 changed files with 3 additions and 2 deletions
|
@ -179,8 +179,9 @@ Result<void> ServiceParser::ParsePriority(std::vector<std::string>&& args) {
|
|||
if (!ParseInt(args[1], &service_->proc_attr_.priority,
|
||||
static_cast<int>(ANDROID_PRIORITY_HIGHEST), // highest is negative
|
||||
static_cast<int>(ANDROID_PRIORITY_LOWEST))) {
|
||||
return Errorf("process priority value must be range {} - {}", ANDROID_PRIORITY_HIGHEST,
|
||||
ANDROID_PRIORITY_LOWEST);
|
||||
return Errorf("process priority value must be range {} - {}",
|
||||
static_cast<int>(ANDROID_PRIORITY_HIGHEST),
|
||||
static_cast<int>(ANDROID_PRIORITY_LOWEST));
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue