[Lldb-commits] [lldb] r226543 - Don't mention a "--core-file" argument to target create. It is
Jason Molenda
jmolenda at apple.com
Mon Jan 19 19:06:18 PST 2015
Author: jmolenda
Date: Mon Jan 19 21:06:17 2015
New Revision: 226543
URL: http://llvm.org/viewvc/llvm-project?rev=226543&view=rev
Log:
Don't mention a "--core-file" argument to target create. It is
"--core".
<rdar://problem/19518164>
Modified:
lldb/trunk/source/Commands/CommandObjectTarget.cpp
Modified: lldb/trunk/source/Commands/CommandObjectTarget.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectTarget.cpp?rev=226543&r1=226542&r2=226543&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectTarget.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectTarget.cpp Mon Jan 19 21:06:17 2015
@@ -427,7 +427,7 @@ protected:
}
else
{
- result.AppendErrorWithFormat("'%s' takes exactly one executable path argument, or use the --core-file option.\n", m_cmd_name.c_str());
+ result.AppendErrorWithFormat("'%s' takes exactly one executable path argument, or use the --core option.\n", m_cmd_name.c_str());
result.SetStatus (eReturnStatusFailed);
}
return result.Succeeded();
More information about the lldb-commits
mailing list