[Lldb-commits] [lldb] r259793 - Provide arguments for all the format string placeholders!
Adrian McCarthy via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 4 07:35:56 PST 2016
Author: amccarth
Date: Thu Feb 4 09:35:55 2016
New Revision: 259793
URL: http://llvm.org/viewvc/llvm-project?rev=259793&view=rev
Log:
Provide arguments for all the format string placeholders!
Log message was wrong because an argument was missing.
Modified:
lldb/trunk/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp
Modified: lldb/trunk/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp?rev=259793&r1=259792&r2=259793&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp Thu Feb 4 09:35:55 2016
@@ -189,7 +189,7 @@ ProcessWindowsLive::DisableBreakpointSit
{
WINLOG_IFALL(WINDOWS_LOG_BREAKPOINTS, "DisableBreakpointSite called with bp_site 0x%p "
"(id=%d, addr=0x%x)",
- bp_site->GetID(), bp_site->GetLoadAddress());
+ bp_site, bp_site->GetID(), bp_site->GetLoadAddress());
Error error = DisableSoftwareBreakpoint(bp_site);
More information about the lldb-commits
mailing list