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

Commit d3dfeb62 authored by Roland Levillain's avatar Roland Levillain Committed by android-build-merger
Browse files

Merge "Fix a typo in an error message of dexopt." am: 5f05746e am: 6095b967

am: 77dc7eb6

Change-Id: I79c99813b0909f6e722a3aaa6cb35289a96b8ac0
parents d31e1ba9 77dc7eb6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -608,7 +608,7 @@ static unique_fd create_profile(uid_t uid, const std::string& profile, int32_t f
    // the app uid. If we cannot do that, there's no point in returning the fd
    // since dex2oat/profman will fail with SElinux denials.
    if (fchown(fd.get(), uid, uid) < 0) {
        PLOG(ERROR) << "Could not chwon profile " << profile;
        PLOG(ERROR) << "Could not chown profile " << profile;
        return invalid_unique_fd();
    }
    return fd;