We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2217272 commit b024b85Copy full SHA for b024b85
toys/other/readelf.c
@@ -57,7 +57,7 @@ static long long elf_get(char **p, int len)
57
long long result;
58
59
if (*p+len-TT.elf>TT.size)
60
- perror_exit("Access off end: %ld[%d] of %lld\n", *p-TT.elf, len, TT.size);
+ perror_exit("Access off end: %td[%d] of %lld\n", *p-TT.elf, len, TT.size);
61
62
result = ((TT.endian == 2) ? peek_be : peek_le)(*p, len);
63
*p += len;
0 commit comments