diff options
author | Aidan Dodds <aidan@codeplay.com> | 2015-04-23 13:57:30 +0000 |
---|---|---|
committer | Aidan Dodds <aidan@codeplay.com> | 2015-04-23 13:57:30 +0000 |
commit | 5372c72a427ee8770b5876a949f381f8f1ca9bdc (patch) | |
tree | 0b7170a7a20e9175976b937167b0ea75b8157f73 | |
parent | 0be238cebd882fb5b3173a75635fe6c4b4597183 (diff) | |
download | bcm5719-llvm-5372c72a427ee8770b5876a949f381f8f1ca9bdc.tar.gz bcm5719-llvm-5372c72a427ee8770b5876a949f381f8f1ca9bdc.zip |
Replace use of %zu with PRIu64 in DYDL logging message.
llvm-svn: 235598
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp index 9220c2f4f94..0be39b19601 100644 --- a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp +++ b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp @@ -147,7 +147,7 @@ DYLDRendezvous::Resolve() address_size = m_process->GetAddressByteSize(); padding = address_size - word_size; if (log) - log->Printf ("DYLDRendezvous::%s address size: %zu, padding %zu", __FUNCTION__, address_size, padding); + log->Printf ("DYLDRendezvous::%s address size: %" PRIu64 ", padding %" PRIu64, __FUNCTION__, uint64_t(address_size), uint64_t(padding)); if (m_rendezvous_addr == LLDB_INVALID_ADDRESS) cursor = info_addr = ResolveRendezvousAddress(m_process); |