diff options
| author | Jim Ingham <jingham@apple.com> | 2015-10-30 21:32:03 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2015-10-30 21:32:03 +0000 |
| commit | 9f521f22d46bb469f5a2645a4da4310d38dab7b4 (patch) | |
| tree | 2511abc534d9e5609bed04fc0ee5016a923b16fd /lldb/source/API | |
| parent | 57d171c9a6bde7c4cd5de0edddba2c89a1cdf2d5 (diff) | |
| download | bcm5719-llvm-9f521f22d46bb469f5a2645a4da4310d38dab7b4.tar.gz bcm5719-llvm-9f521f22d46bb469f5a2645a4da4310d38dab7b4.zip | |
Fix an error message (the debugger was invalid, not the target.)
llvm-svn: 251720
Diffstat (limited to 'lldb/source/API')
| -rw-r--r-- | lldb/source/API/SBDebugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index fca43d6682e..53785cd5ba9 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -638,7 +638,7 @@ SBDebugger::CreateTarget (const char *filename, } else { - sb_error.SetErrorString("invalid target"); + sb_error.SetErrorString("invalid debugger"); } Log *log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); |

