diff options
Diffstat (limited to 'binutils/od-macho.c')
-rw-r--r-- | binutils/od-macho.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/od-macho.c b/binutils/od-macho.c index 456a7cb..f9d4b37 100644 --- a/binutils/od-macho.c +++ b/binutils/od-macho.c @@ -2011,7 +2011,7 @@ dump_obj_compact_unwind (bfd *abfd, putchar (' '); printf_uint64 (bfd_get_64 (abfd, e->start)); - printf (" %08lx", bfd_get_32 (abfd, e->length)); + printf (" %08lx", (unsigned long)bfd_get_32 (abfd, e->length)); putchar (' '); printf_uint64 (bfd_get_64 (abfd, e->personality)); putchar (' '); |