Fix a type (MAX_PATH instead of PATH_MAX) and remove an unused variable.

llvm-svn: 223559
This commit is contained in:
Jim Ingham 2014-12-06 01:03:17 +00:00
parent 498ff1c1b8
commit 67d7af9c34
1 changed files with 1 additions and 2 deletions

View File

@ -557,8 +557,7 @@ Host::RunShellCommand (const char *command,
if (working_dir)
launch_info.SetWorkingDirectory(working_dir);
llvm::SmallString<MAX_PATH> output_file_path;
char output_file_path_buffer[PATH_MAX];
llvm::SmallString<PATH_MAX> output_file_path;
if (command_output_ptr)
{