Fix typo
Test: builds Change-Id: I4b48e8b3d457382579216482249e734f74768c71
This commit is contained in:
parent
3bd09415a3
commit
b2c2d6907f
1 changed files with 2 additions and 1 deletions
|
@ -437,7 +437,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";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue