summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian McCarthy <amccarth@google.com>2016-02-04 15:35:55 +0000
committerAdrian McCarthy <amccarth@google.com>2016-02-04 15:35:55 +0000
commit25bfa7859c90c77ef82ae8083df16c0e872248ca (patch)
tree575ca0684f135bd73916887646c711c9fe77c7cb
parent86528270b9afc0fb7e1eccb01f77c3deb971e7be (diff)
downloadbcm5719-llvm-25bfa7859c90c77ef82ae8083df16c0e872248ca.tar.gz
bcm5719-llvm-25bfa7859c90c77ef82ae8083df16c0e872248ca.zip
Provide arguments for all the format string placeholders!
Log message was wrong because an argument was missing. llvm-svn: 259793
-rw-r--r--lldb/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp b/lldb/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp
index 3a6303d989c..45ef8366f8f 100644
--- a/lldb/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp
+++ b/lldb/source/Plugins/Process/Windows/Live/ProcessWindowsLive.cpp
@@ -189,7 +189,7 @@ ProcessWindowsLive::DisableBreakpointSite(BreakpointSite *bp_site)
{
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);
OpenPOWER on IntegriCloud