diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-26 14:05:16 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-26 14:05:16 +0000 |
commit | 4fc1a3fa45f0edd6a8f4e255834be17e2e6c237a (patch) | |
tree | d7099a20c83881df05eaf171bcebd43fb48f5d73 | |
parent | a082668ebd648842aa89578e610dc93a8ae55519 (diff) | |
download | chromium_src-4fc1a3fa45f0edd6a8f4e255834be17e2e6c237a.zip chromium_src-4fc1a3fa45f0edd6a8f4e255834be17e2e6c237a.tar.gz chromium_src-4fc1a3fa45f0edd6a8f4e255834be17e2e6c237a.tar.bz2 |
linux: fix warning message that was bugging me
(It lacked a space after the process type.)
Review URL: http://codereview.chromium.org/661180
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40116 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/app/chrome_dll_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc index 88bd250..f3abd2a 100644 --- a/chrome/app/chrome_dll_main.cc +++ b/chrome/app/chrome_dll_main.cc @@ -273,7 +273,7 @@ static void AdjustLinuxOOMScore(const std::string& process_type) { } else if (process_type == switches::kExtensionProcess || process_type == switches::kRendererProcess) { // Set in chrome/browser/zygote_host_linux.cc. - NOTREACHED() << "process type " << process_type + NOTREACHED() << "process type '" << process_type << "' " << "should go through the zygote."; } else { NOTREACHED() << "Unknown process type"; |