From 8c0a02099662e19689deda8c6bd87b3cb8d6d8ab Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 26 Jul 2013 20:44:45 +0000 Subject: [PATCH] Add missing 'n'. Thanks to Han Finkel for noticing it. llvm-svn: 187241 --- lib/Support/Unix/Program.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/Unix/Program.inc b/lib/Support/Unix/Program.inc index 0605d531ca5..a93a9120eaa 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];