Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing typo
  • Loading branch information
batzen committed Mar 27, 2021
commit e8a7cf81619e69661e839f5d87725af2445f4c0e
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ private bool ForkAndExecProcess(
}

string directoryForException = cwd?.Length > 0 ? cwd : Directory.GetCurrentDirectory();
string msg = SR.Format(SR.FailedToStartFileDirectory, filename, directoryForException, GetErrorMessage(errorCode));
string msg = SR.Format(SR.FailedToStartFileDirectory, filename, directoryForException, GetErrorMessage(errno));
throw new Win32Exception(errno, msg);
}
}
Expand Down