[llvm-branch-commits] [lldb] r198992 - Fix a build breakage after the merge.

Greg Clayton gclayton at apple.com
Fri Jan 10 17:26:41 PST 2014


Author: gclayton
Date: Fri Jan 10 19:26:41 2014
New Revision: 198992

URL: http://llvm.org/viewvc/llvm-project?rev=198992&view=rev
Log:
Fix a build breakage after the merge.


Modified:
    lldb/branches/iohandler/source/Target/Process.cpp

Modified: lldb/branches/iohandler/source/Target/Process.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/iohandler/source/Target/Process.cpp?rev=198992&r1=198991&r2=198992&view=diff
==============================================================================
--- lldb/branches/iohandler/source/Target/Process.cpp (original)
+++ lldb/branches/iohandler/source/Target/Process.cpp Fri Jan 10 19:26:41 2014
@@ -2200,11 +2200,11 @@ Process::CreateBreakpointSite (const Bre
             load_addr = ResolveIndirectFunction (&symbol->GetAddress(), error);
             if (!error.Success() && show_error)
             {
-                m_target.GetDebugger().GetErrorFile().Printf ("warning: failed to resolve indirect function at 0x%" PRIx64 " for breakpoint %i.%i: %s\n",
-                                                              symbol->GetAddress().GetLoadAddress(&m_target),
-                                                              owner->GetBreakpoint().GetID(),
-                                                              owner->GetID(),
-                                                              error.AsCString() ? error.AsCString() : "unkown error");
+                m_target.GetDebugger().GetErrorFile()->Printf ("warning: failed to resolve indirect function at 0x%" PRIx64 " for breakpoint %i.%i: %s\n",
+                                                               symbol->GetAddress().GetLoadAddress(&m_target),
+                                                               owner->GetBreakpoint().GetID(),
+                                                               owner->GetID(),
+                                                               error.AsCString() ? error.AsCString() : "unkown error");
                 return LLDB_INVALID_BREAK_ID;
             }
             Address resolved_address(load_addr);





More information about the llvm-branch-commits mailing list