Merge "Fix typo" am: dec467f271

am: 7f114540d8

Change-Id: Iaa6bceebdab147a9e332c2db511aac9242474e3a
This commit is contained in:
Paul Lawrence 2019-08-31 08:15:41 -07:00 committed by android-build-merger
commit 4fc8a5c20a

View file

@ -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";
}
}