[Lldb-commits] [lldb] r140239 - in /lldb/trunk/source/API: SBFileSpecList.cpp SBTarget.cpp

Greg Clayton gclayton at apple.com
Tue Sep 20 23:45:51 PDT 2011


Author: gclayton
Date: Wed Sep 21 01:45:51 2011
New Revision: 140239

URL: http://llvm.org/viewvc/llvm-project?rev=140239&view=rev
Log:
Fixed two printf format errors.


Modified:
    lldb/trunk/source/API/SBFileSpecList.cpp
    lldb/trunk/source/API/SBTarget.cpp

Modified: lldb/trunk/source/API/SBFileSpecList.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBFileSpecList.cpp?rev=140239&r1=140238&r2=140239&view=diff
==============================================================================
--- lldb/trunk/source/API/SBFileSpecList.cpp (original)
+++ lldb/trunk/source/API/SBFileSpecList.cpp Wed Sep 21 01:45:51 2011
@@ -36,7 +36,7 @@
 
     if (log)
     {
-        log->Printf ("SBFileSpecList::SBFileSpecList (const SBFileSpecList rhs.ap=%p) => SBFileSpecList(%p): %s",
+        log->Printf ("SBFileSpecList::SBFileSpecList (const SBFileSpecList rhs.ap=%p) => SBFileSpecList(%p)",
                      rhs.m_opaque_ap.get(), m_opaque_ap.get());
     }
 }

Modified: lldb/trunk/source/API/SBTarget.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBTarget.cpp?rev=140239&r1=140238&r2=140239&view=diff
==============================================================================
--- lldb/trunk/source/API/SBTarget.cpp (original)
+++ lldb/trunk/source/API/SBTarget.cpp Wed Sep 21 01:45:51 2011
@@ -683,7 +683,7 @@
         char path[PATH_MAX];
         source_file->GetPath (path, sizeof(path));
         log->Printf ("SBTarget(%p)::BreakpointCreateByRegex (source_regex=\"%s\", file=\"%s\", module_name=\"%s\") => SBBreakpoint(%p)", 
-                     m_opaque_sp.get(), source_regex, path, sb_bp.get());
+                     m_opaque_sp.get(), source_regex, path, module_name, sb_bp.get());
     }
 
     return sb_bp;





More information about the lldb-commits mailing list