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

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

Merge "libprocessgroup: UIDs in linux are unsigned" into main am: a414e2fd...

Merge "libprocessgroup: UIDs in linux are unsigned" into main am: a414e2fd am: 6094c610 am: 661bf674 am: 0af65484 am: c1f8bbd7

Original change: https://android-review.googlesource.com/c/platform/system/core/+/2670104



Change-Id: Ia2b0a67698eb8d9b84e75a93bb35e240ef34129a
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 68ec717b c1f8bbd7
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;
}