[Lldb-commits] [lldb] r148876 - /lldb/trunk/source/Target/StopInfo.cpp

Johnny Chen johnny.chen at apple.com
Tue Jan 24 15:19:26 PST 2012


Author: johnny
Date: Tue Jan 24 17:19:25 2012
New Revision: 148876

URL: http://llvm.org/viewvc/llvm-project?rev=148876&view=rev
Log:
Fix a typo in the error message of the StopInfoWatchpoint class.

Modified:
    lldb/trunk/source/Target/StopInfo.cpp

Modified: lldb/trunk/source/Target/StopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/StopInfo.cpp?rev=148876&r1=148875&r2=148876&view=diff
==============================================================================
--- lldb/trunk/source/Target/StopInfo.cpp (original)
+++ lldb/trunk/source/Target/StopInfo.cpp Tue Jan 24 17:19:25 2012
@@ -534,7 +534,7 @@
                 {
                     Debugger &debugger = context.exe_ctx.GetTargetRef().GetDebugger();
                     StreamSP error_sp = debugger.GetAsyncErrorStream ();
-                    error_sp->Printf ("Stopped due to an error evaluating condition of breakpoint ");
+                    error_sp->Printf ("Stopped due to an error evaluating condition of watchpoint ");
                     wp_sp->GetDescription (error_sp.get(), eDescriptionLevelBrief);
                     error_sp->Printf (": \"%s\"", 
                                       wp_sp->GetConditionText());





More information about the lldb-commits mailing list