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 | 8b68480453b472fbc49aebc49c37e3ef4cad66cb (patch) | |
tree | ddfc0c91219c1dc3656690617d1e7000f9879c98 /lib | |
parent | 83d8ef133b121b7e752e7468cb1e0e5e3b636aee (diff) | |
download | external_llvm-8b68480453b472fbc49aebc49c37e3ef4cad66cb.zip external_llvm-8b68480453b472fbc49aebc49c37e3ef4cad66cb.tar.gz external_llvm-8b68480453b472fbc49aebc49c37e3ef4cad66cb.tar.bz2 |
Add missing 'n'.
Thanks to Han Finkel for noticing it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Support/Unix/Program.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Unix/Program.inc b/lib/Support/Unix/Program.inc index 0605d53..a93a912 100644 --- a/lib/Support/Unix/Program.inc +++ b/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]; |