1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-26 03:11:44 +02:00

Shut down compiler warning about format mismatch.

This commit is contained in:
Kostik Belousov 2012-03-13 13:17:07 +02:00
parent e8eb583450
commit 1e6959a769

View file

@ -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;
}