mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-04-18 02:22:16 +02:00
Shut down compiler warning about format mismatch.
This commit is contained in:
parent
e8eb583450
commit
1e6959a769
1 changed files with 2 additions and 2 deletions
|
@ -122,8 +122,8 @@ _UCD_create(const char *filename)
|
||||||
if (_64bits && sizeof(elf_header64.e_entry) > sizeof(off_t))
|
if (_64bits && sizeof(elf_header64.e_entry) > sizeof(off_t))
|
||||||
{
|
{
|
||||||
Debug(0, "Can't process '%s': 64-bit file "
|
Debug(0, "Can't process '%s': 64-bit file "
|
||||||
"while only %d bits are supported",
|
"while only %ld bits are supported",
|
||||||
filename, 8 * sizeof(off_t));
|
filename, 8L * sizeof(off_t));
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue