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

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

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

am: 7c136c6d

Change-Id: Ic1882a87d63a676e4aa9acbc18203398281ecdfc
parents 9e742405 7c136c6d
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";
        }
    }