mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-12-23 12:03:41 +01: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))
|
||||
{
|
||||
Debug(0, "Can't process '%s': 64-bit file "
|
||||
"while only %d bits are supported",
|
||||
filename, 8 * sizeof(off_t));
|
||||
"while only %ld bits are supported",
|
||||
filename, 8L * sizeof(off_t));
|
||||
goto err;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue