Unbreak the NetBSD build after recent changes

Similar to r281922 "Try to fix freebsd and android builds."

Replace .AppendArgument(cstr) with .AppendArgument(llvm::StringRef(cstr))

llvm-svn: 282032
This commit is contained in:
Kamil Rytarowski 2016-09-20 22:26:29 +00:00
parent 5653e5dffc
commit d4487347e3
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ static bool GetNetBSDProcessArgs(const ProcessInstanceInfoMatch *match_info_ptr,
if (!cstr) if (!cstr)
break; break;
proc_args.AppendArgument(cstr); proc_args.AppendArgument(llvm::StringRef(cstr));
} }
return true; return true;