diff options
author | Matt Kopec <Matt.Kopec@intel.com> | 2013-03-12 17:45:38 +0000 |
---|---|---|
committer | Matt Kopec <Matt.Kopec@intel.com> | 2013-03-12 17:45:38 +0000 |
commit | 787d1623b0e349b0bafc9048017a5b2c2cde3e59 (patch) | |
tree | 41987bfd81828737ed665d6a84780f188a630830 /lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | |
parent | e92f54a0105c4ac02910fee56d1adcc8f3af452e (diff) | |
download | bcm5719-llvm-787d1623b0e349b0bafc9048017a5b2c2cde3e59.tar.gz bcm5719-llvm-787d1623b0e349b0bafc9048017a5b2c2cde3e59.zip |
Misc. clang build warning fixes.
llvm-svn: 176879
Diffstat (limited to 'lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp')
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp index 2e865c1847b..7735c766537 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp @@ -930,7 +930,7 @@ DynamicLoaderDarwinKernel::KextImageInfo::LoadImageUsingMemoryModule (Process *p addr_t file_address = kernel_object_file->GetHeaderAddress().GetFileAddress(); if (m_load_address != LLDB_INVALID_ADDRESS && file_address != LLDB_INVALID_ADDRESS) { - s->Printf ("Kernel slid 0x%llx in memory.\n", m_load_address - file_address); + s->Printf ("Kernel slid 0x%" PRIx64 " in memory.\n", m_load_address - file_address); } } if (m_module_sp->GetFileSpec().GetDirectory().IsEmpty()) |