Merge "Fix typo"

This commit is contained in:
Treehugger Robot 2019-08-31 13:39:37 +00:00 committed by Gerrit Code Review
commit dec467f271

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