[Lldb-commits] [lldb] r170447 - /lldb/trunk/source/Commands/CommandObjectProcess.cpp

Daniel Malea daniel.malea at intel.com
Tue Dec 18 12:00:40 PST 2012


Author: dmalea
Date: Tue Dec 18 14:00:40 2012
New Revision: 170447

URL: http://llvm.org/viewvc/llvm-project?rev=170447&view=rev
Log:
Fix typo in error message (print requested URL instead of command name when plugin missing)


Modified:
    lldb/trunk/source/Commands/CommandObjectProcess.cpp

Modified: lldb/trunk/source/Commands/CommandObjectProcess.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectProcess.cpp?rev=170447&r1=170446&r2=170447&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectProcess.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectProcess.cpp Tue Dec 18 14:00:40 2012
@@ -1063,7 +1063,7 @@
             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);
             }
         }





More information about the lldb-commits mailing list