Use correct format specifier.

Review comment on r328235 by James Henderson.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@328578 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Paul Robinson 2018-03-26 19:55:01 +00:00
parent b972acbf78
commit c7df4e42af

View File

@ -553,7 +553,7 @@ bool DWARFDebugLine::LineTable::parse(DWARFDataExtractor &DebugLineData,
DebugLineData.setAddressSize(Len - 1);
else if (DebugLineData.getAddressSize() != Len - 1) {
fprintf(stderr, "Mismatching address size at offset 0x%8.8" PRIx32
" expected 0x%2.2" PRIx32 " found 0x%2.2" PRIx64 "\n",
" expected 0x%2.2" PRIx8 " found 0x%2.2" PRIx64 "\n",
ExtOffset, DebugLineData.getAddressSize(), Len - 1);
// Skip the rest of the line-number program.
*OffsetPtr = EndOffset;