From b024b85151d6c3ec1c08bd63ae381aef3d4a840c Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 19 May 2021 10:45:44 -0700 Subject: readelf: fix 32-bit build on Android. --- toys/other/readelf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/other/readelf.c b/toys/other/readelf.c index 45afd83a..29e27244 100644 --- a/toys/other/readelf.c +++ b/toys/other/readelf.c @@ -57,7 +57,7 @@ static long long elf_get(char **p, int len) long long result; if (*p+len-TT.elf>TT.size) - 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); result = ((TT.endian == 2) ? peek_be : peek_le)(*p, len); *p += len; -- cgit v1.2.3