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

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

Merge "Fix typo" am: dec467f2 am: 7f114540

am: 4fc8a5c2

Change-Id: I995c1b951081bae58327dde2b2be360bd0f0b7a3
parents 2ee096f6 4fc8a5c2
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";
        }
    }