Merge "Fix typo"

am: dec467f271

Change-Id: Iccd201c8ae3f4ff9fce50d03035acfd789ea302a
This commit is contained in:
Paul Lawrence 2019-08-31 08:07:40 -07:00 committed by android-build-merger
commit 7f114540d8

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