Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(533)

Unified Diff: base/process/launch_win.cc

Issue 1558633002: Cleanup: Remove double semicolons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert CP code to a while loop, fix nit Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
}

Powered by Google App Engine
This is Rietveld 408576698