| Index: base/process/launch_win.cc
|
| diff --git a/base/process/launch_win.cc b/base/process/launch_win.cc
|
| index 54b06675100431711f837b9d88a74f226f1c92b8..612b77eb349a1f13615785a9b10b1a12f3c43457 100644
|
| --- a/base/process/launch_win.cc
|
| +++ b/base/process/launch_win.cc
|
| @@ -300,7 +300,7 @@ Process LaunchProcess(const string16& cmdline,
|
| DestroyEnvironmentBlock(enviroment_block);
|
| if (!launched) {
|
| DPLOG(ERROR) << "Command line:" << std::endl << UTF16ToUTF8(cmdline)
|
| - << std::endl;;
|
| + << std::endl;
|
| return Process();
|
| }
|
| } else {
|
| @@ -309,7 +309,7 @@ Process LaunchProcess(const string16& cmdline,
|
| inherit_handles, flags, NULL, NULL,
|
| startup_info, &temp_process_info)) {
|
| DPLOG(ERROR) << "Command line:" << std::endl << UTF16ToUTF8(cmdline)
|
| - << std::endl;;
|
| + << std::endl;
|
| return Process();
|
| }
|
| }
|
|
|