diff options
Diffstat (limited to 'chrome/app/chrome_dll_main.cc')
-rw-r--r-- | chrome/app/chrome_dll_main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc index 4df3961..27b4e24 100644 --- a/chrome/app/chrome_dll_main.cc +++ b/chrome/app/chrome_dll_main.cc @@ -364,8 +364,8 @@ int ChromeMain(int argc, char** argv) { if (parsed_command_line.HasSwitch("help") || parsed_command_line.HasSwitch("h")) { FilePath binary(parsed_command_line.argv()[0]); - int ret = execlp("man", "man", binary.BaseName().value().c_str(), NULL); - LOG(FATAL) << "execlp failed: " << strerror(ret); + execlp("man", "man", binary.BaseName().value().c_str(), NULL); + PLOG(FATAL) << "execlp failed"; } #endif |