Fix typo
Test: builds
Change-Id: I4b48e8b3d457382579216482249e734f74768c71
diff --git a/init/selinux.cpp b/init/selinux.cpp
index fd42256..db2a7fc 100644
--- a/init/selinux.cpp
+++ b/init/selinux.cpp
@@ -437,7 +437,8 @@
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";
}
}