Index: content/browser/zygote_main_linux.cc |
diff --git a/content/browser/zygote_main_linux.cc b/content/browser/zygote_main_linux.cc |
index ef6939edebd71ea2aa4bbfe5a078d407904cdef3..ce5cb54ca80381973833cbf4828898a205e30b11 100644 |
--- a/content/browser/zygote_main_linux.cc |
+++ b/content/browser/zygote_main_linux.cc |
@@ -124,7 +124,7 @@ class Zygote { |
bool r = UnixDomainSocket::SendMsg(kBrowserDescriptor, kZygoteMagic, |
sizeof(kZygoteMagic), empty); |
#if defined(OS_CHROMEOS) |
- LOG_IF(WARNING, r) << "Sending zygote magic failed"; |
+ LOG_IF(WARNING, !r) << "Sending zygote magic failed"; |
// Exit normally on chromeos because session manager may send SIGTERM |
// right after the process starts and it may fail to send zygote magic |
// number to browser process. |