[Lldb-commits] [lldb] r251720 - Fix an error message (the debugger was invalid, not the target.)

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 30 14:32:03 PDT 2015


Author: jingham
Date: Fri Oct 30 16:32:03 2015
New Revision: 251720

URL: http://llvm.org/viewvc/llvm-project?rev=251720&view=rev
Log:
Fix an error message (the debugger was invalid, not the target.)

Modified:
    lldb/trunk/source/API/SBDebugger.cpp

Modified: lldb/trunk/source/API/SBDebugger.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBDebugger.cpp?rev=251720&r1=251719&r2=251720&view=diff
==============================================================================
--- lldb/trunk/source/API/SBDebugger.cpp (original)
+++ lldb/trunk/source/API/SBDebugger.cpp Fri Oct 30 16:32:03 2015
@@ -638,7 +638,7 @@ SBDebugger::CreateTarget (const char *fi
     }
     else
     {
-        sb_error.SetErrorString("invalid target");
+        sb_error.SetErrorString("invalid debugger");
     }
 
     Log *log(GetLogIfAllCategoriesSet (LIBLLDB_LOG_API));




More information about the lldb-commits mailing list