Skip to content

Commit

Permalink
ProcessWin32: Use toCString. Fixes os/Process on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
fredreichbier committed Sep 8, 2010
1 parent a8e1579 commit f2a4eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/os/native/ProcessWin32.ooc
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ ProcessWin32: class extends Process {
// Start the child process.
if(!CreateProcess(
null, // No module name (use command line)
cmdLine, // Command line
cmdLine toCString(), // Command line
null, // Process handle not inheritable
null, // Thread handle not inheritable
true, // Set handle inheritance to true
Expand Down

0 comments on commit f2a4eca

Please sign in to comment.