summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/jit/JumpReplacementWatchpoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/jit/JumpReplacementWatchpoint.cpp')
-rw-r--r--Source/JavaScriptCore/jit/JumpReplacementWatchpoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/JavaScriptCore/jit/JumpReplacementWatchpoint.cpp b/Source/JavaScriptCore/jit/JumpReplacementWatchpoint.cpp
index 26eae57be..13270d4d3 100644
--- a/Source/JavaScriptCore/jit/JumpReplacementWatchpoint.cpp
+++ b/Source/JavaScriptCore/jit/JumpReplacementWatchpoint.cpp
@@ -47,7 +47,7 @@ void JumpReplacementWatchpoint::fireInternal()
void* source = bitwise_cast<void*>(m_source);
void* destination = bitwise_cast<void*>(m_destination);
if (Options::showDisassembly())
- dataLog("Firing jump replacement watchpoint from %p, to %p.\n", source, destination);
+ dataLogF("Firing jump replacement watchpoint from %p, to %p.\n", source, destination);
MacroAssembler::replaceWithJump(CodeLocationLabel(source), CodeLocationLabel(destination));
if (isOnList())
remove();