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

Commit a414e2fd authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "libprocessgroup: UIDs in linux are unsigned" into main

parents e4cbd9a6 bf2bebd8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ bool ProfileAttribute::GetPathForUID(uid_t uid, std::string* path) const {

    const std::string& file_name =
            controller()->version() == 2 && !file_v2_name_.empty() ? file_v2_name_ : file_name_;
    *path = StringPrintf("%s/uid_%d/%s", controller()->path(), uid, file_name.c_str());
    *path = StringPrintf("%s/uid_%u/%s", controller()->path(), uid, file_name.c_str());
    return true;
}