Skip to content

Commit 5372c72

Browse files
committed
Replace use of %zu with PRIu64 in DYDL logging message.
llvm-svn: 235598
1 parent 0be238c commit 5372c72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ DYLDRendezvous::Resolve()
147147
address_size = m_process->GetAddressByteSize();
148148
padding = address_size - word_size;
149149
if (log)
150-
log->Printf ("DYLDRendezvous::%s address size: %zu, padding %zu", __FUNCTION__, address_size, padding);
150+
log->Printf ("DYLDRendezvous::%s address size: %" PRIu64 ", padding %" PRIu64, __FUNCTION__, uint64_t(address_size), uint64_t(padding));
151151

152152
if (m_rendezvous_addr == LLDB_INVALID_ADDRESS)
153153
cursor = info_addr = ResolveRendezvousAddress(m_process);

0 commit comments

Comments
 (0)