1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Avoid a printf warning.

This commit is contained in:
Markus F.X.J. Oberhumer 2006-10-04 00:16:55 +02:00
parent a61457b422
commit ebef2b1e44

View File

@ -451,7 +451,7 @@ void ElfLinker::dumpSymbols(FILE *fp) const
for (unsigned ic = 0; ic < nsymbols; ic++)
{
Symbol *symbol = symbols[ic];
fprintf(fp, "%-20s 0x%08lx | %-20s 0x%08lx\n",
fprintf(fp, "%-20s 0x%08x | %-20s 0x%08x\n",
symbol->name, symbol->offset, symbol->section->name, symbol->section->offset);
}
}