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

Unified Diff: tools/traceline/traceline/main.cc

Issue 194011: Traceline: Pass a STARTUPINFOA to CreateProcessA. (Closed)
Patch Set: Created 11 years, 3 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/traceline/traceline/main.cc
diff --git a/tools/traceline/traceline/main.cc b/tools/traceline/traceline/main.cc
index 97085ebe628c178cdc39b6af2f5ce2d3d140851d..11d9e52437c1d1c9b5b3d6bdcc8899dc61169aa1 100644
--- a/tools/traceline/traceline/main.cc
+++ b/tools/traceline/traceline/main.cc
@@ -1256,7 +1256,7 @@ int main(int argc, char** argv) {
launched = true;
argc--; argv++;
} else if (!launched) {
- STARTUPINFO start_info = {0};
+ STARTUPINFOA start_info = {0};
start_info.cb = sizeof(start_info);
if (!CreateProcessA(NULL,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698