From e309e75d5a3463420d8a7417965678ec8f4bfe38 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Tue, 29 Nov 2011 21:16:36 +0000 Subject: [PATCH] Typo in error string. llvm-svn: 145434 --- lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp index 408a57f391ab..7e2d3cdffe2e 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp @@ -75,7 +75,7 @@ PlatformDarwin::ResolveExecutable (const FileSpec &exe_file, else { exe_file.GetPath (exe_path, sizeof(exe_path)); - error.SetErrorStringWithFormat ("enable to find executable for '%s'", exe_path); + error.SetErrorStringWithFormat ("unable to find executable for '%s'", exe_path); } } else