Skip to content

Commit

Permalink
Revert unintended indent
Browse files Browse the repository at this point in the history
  • Loading branch information
Steelskin committed Jun 25, 2024
1 parent 411f9df commit 5279f86
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Sources/WinAppDriver/Win32ProcessTree.swift
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,16 @@ internal class Win32ProcessTree {

var processInfo = PROCESS_INFORMATION()
guard CreateProcessW(
nil,
UnsafeMutablePointer<WCHAR>(mutating: commandLine),
nil,
nil,
redirectStdHandle, // Inherit handles is necessary for redirects.
creationFlags,
nil,
nil,
&startupInfo,
&processInfo
nil,
UnsafeMutablePointer<WCHAR>(mutating: commandLine),
nil,
nil,
redirectStdHandle, // Inherit handles is necessary for redirects.
creationFlags,
nil,
nil,
&startupInfo,
&processInfo
) else {
throw Win32Error.getLastError(apiName: "CreateProcessW")
}
Expand Down

0 comments on commit 5279f86

Please sign in to comment.