[Lldb-commits] [lldb] r235387 - Placate clang. lldb can build on FreeBSD with -Werror again.
Davide Italiano
davide at freebsd.org
Tue Apr 21 09:06:17 PDT 2015
Author: davide
Date: Tue Apr 21 11:06:17 2015
New Revision: 235387
URL: http://llvm.org/viewvc/llvm-project?rev=235387&view=rev
Log:
Placate clang. lldb can build on FreeBSD with -Werror again.
Modified:
lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp?rev=235387&r1=235386&r2=235387&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp Tue Apr 21 11:06:17 2015
@@ -465,7 +465,7 @@ DWARFCompileUnit::BuildAddressRangeTable
{
const LineTable::FileAddressRanges::Entry &range = file_ranges.GetEntryRef(idx);
debug_aranges->AppendRange(GetOffset(), range.GetRangeBase(), range.GetRangeEnd());
- printf ("0x%8.8x: [0x%16.16llx - 0x%16.16llx)\n", GetOffset(), range.GetRangeBase(), range.GetRangeEnd());
+ printf ("0x%8.8x: [0x%16.16lx - 0x%16.16lx)\n", GetOffset(), range.GetRangeBase(), range.GetRangeEnd());
}
}
}
More information about the lldb-commits
mailing list