Skip to content

Commit 8b8f21d

Browse files
authored
[lldb] Fix log message in resolveRemoteAddress
1 parent f42dcac commit 8b8f21d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Plugins/LanguageRuntime/Swift/LLDBMemoryReader.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,9 +336,9 @@ LLDBMemoryReader::resolveRemoteAddress(uint64_t address) const {
336336
}
337337

338338
LLDB_LOGV(log,
339-
"[MemoryReader] Unsuccessfully resolved mapped address {1:x} "
339+
"[MemoryReader] Successfully resolved mapped address {1:x} "
340340
"into file address {1:x}",
341-
address, address);
341+
address, resolved);
342342
return resolved;
343343
}
344344

0 commit comments

Comments
 (0)