llvm-objdump: add missing % in format specifier.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215198 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tim Northover 2014-08-08 12:08:51 +00:00
parent 5ccbb28fc9
commit b56b256896

View File

@ -629,8 +629,8 @@ printMachOCompactUnwindSection(const MachOObjectFile *Obj,
// Finally, we're ready to print the data we've gathered.
outs() << "Contents of __compact_unwind section:\n";
for (auto &Entry : CompactUnwinds) {
outs() << " Entry at offset " << format("0x" PRIx32, Entry.OffsetInSection)
<< ":\n";
outs() << " Entry at offset "
<< format("0x%" PRIx32, Entry.OffsetInSection) << ":\n";
// 1. Start of the region this entry applies to.
outs() << " start: "