diff options
author | Daniel Malea <daniel.malea@intel.com> | 2012-12-18 20:00:40 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2012-12-18 20:00:40 +0000 |
commit | f00b75117573f7a989243b7724dc7df7b876aa49 (patch) | |
tree | 40f9a8a64e6c00e44579ae5fa30c55eb01824837 /lldb/source/Commands/CommandObjectProcess.cpp | |
parent | 3f69a1b860910fbf0b1c67290416dbf5168f6a7c (diff) | |
download | llvm-f00b75117573f7a989243b7724dc7df7b876aa49.zip llvm-f00b75117573f7a989243b7724dc7df7b876aa49.tar.gz llvm-f00b75117573f7a989243b7724dc7df7b876aa49.tar.bz2 |
Fix typo in error message (print requested URL instead of command name when plugin missing)
llvm-svn: 170447
Diffstat (limited to 'lldb/source/Commands/CommandObjectProcess.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectProcess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectProcess.cpp b/lldb/source/Commands/CommandObjectProcess.cpp index 9b5e205..c1f5edf 100644 --- a/lldb/source/Commands/CommandObjectProcess.cpp +++ b/lldb/source/Commands/CommandObjectProcess.cpp @@ -1063,7 +1063,7 @@ protected: else { result.AppendErrorWithFormat ("Unable to find process plug-in for remote URL '%s'.\nPlease specify a process plug-in name with the --plugin option, or specify an object file using the \"file\" command.\n", - m_cmd_name.c_str()); + remote_url); result.SetStatus (eReturnStatusFailed); } } |