Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e7ab0db3 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Update fmtlib to 10.1.1" into main am: 6c7dca81

parents 8cc1a791 6c7dca81
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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 {};
}