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

Commit 7f114540 authored by Paul Lawrence's avatar Paul Lawrence Committed by android-build-merger
Browse files

Merge "Fix typo"

am: dec467f2

Change-Id: Iccd201c8ae3f4ff9fce50d03035acfd789ea302a
parents b6693075 dec467f2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -439,7 +439,8 @@ void SelinuxInitialize() {
    bool is_enforcing = IsEnforcing();
    if (kernel_enforcing != is_enforcing) {
        if (security_setenforce(is_enforcing)) {
            PLOG(FATAL) << "security_setenforce(%s) failed" << (is_enforcing ? "true" : "false");
            PLOG(FATAL) << "security_setenforce(" << (is_enforcing ? "true" : "false")
                        << ") failed";
        }
    }