diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-26 20:44:45 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-26 20:44:45 +0000 |
commit | 1cfc5dd4bddd1ebf27efabc59b2853b79665d61c (patch) | |
tree | c86c6ab1f717c05c15fa9ff87e7d953a3599ceda /llvm/lib/Support/Unix | |
parent | ca64c3e136f08a135d6031d1940a63dd071be5b3 (diff) | |
download | bcm5719-llvm-1cfc5dd4bddd1ebf27efabc59b2853b79665d61c.tar.gz bcm5719-llvm-1cfc5dd4bddd1ebf27efabc59b2853b79665d61c.zip |
Add missing 'n'.
Thanks to Han Finkel for noticing it.
llvm-svn: 187241
Diffstat (limited to 'llvm/lib/Support/Unix')
-rw-r--r-- | llvm/lib/Support/Unix/Program.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Unix/Program.inc b/llvm/lib/Support/Unix/Program.inc index 0605d531ca5..a93a9120eaa 100644 --- a/llvm/lib/Support/Unix/Program.inc +++ b/llvm/lib/Support/Unix/Program.inc @@ -186,7 +186,7 @@ static bool Execute(void **Data, StringRef Program, const char **args, posix_spawn_file_actions_t *FileActions = 0; // If we call posix_spawn_file_actions_addopen we have to make sure the - // c strings we pass to it stay alive until the call to posix_spaw, + // c strings we pass to it stay alive until the call to posix_spawn, // so we copy any StringRefs into this variable. std::string RedirectsStorage[3]; |