Fix a typo in the error message of the StopInfoWatchpoint class.

llvm-svn: 148876
diff --git a/lldb/source/Target/StopInfo.cpp b/lldb/source/Target/StopInfo.cpp
index 00c7680..ccfd5be 100644
--- a/lldb/source/Target/StopInfo.cpp
+++ b/lldb/source/Target/StopInfo.cpp
@@ -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());