Skip to content

Commit 16eef51

Browse files
committed
More fixes
(cherry picked from commit 1f205ef)
1 parent 5bdb0d6 commit 16eef51

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
@@ -267,7 +267,7 @@ bool LLDBMemoryReader::readBytes(swift::remote::RemoteAddress address,
267267
maybeAddr = resolveRemoteAddress(address.getAddressData());
268268

269269
if (!maybeAddr) {
270-
LLDB_LOGV(log, "[MemoryReader] could not resolve address {1:x}",
270+
LLDB_LOGV(log, "[MemoryReader] could not resolve address {0:x}",
271271
address.getAddressData());
272272
return false;
273273
}
@@ -344,7 +344,7 @@ bool LLDBMemoryReader::readString(swift::remote::RemoteAddress address,
344344
maybeAddr = resolveRemoteAddress(address.getAddressData());
345345

346346
if (!maybeAddr) {
347-
LLDB_LOGV(log, "[MemoryReader] could not resolve address {1:x}",
347+
LLDB_LOGV(log, "[MemoryReader] could not resolve address {0:x}",
348348
address.getAddressData());
349349
return false;
350350
}

0 commit comments

Comments
 (0)