* peXXigen.c (rsrc_print_section): Fix compile time warning for

32-bit hosts.
This commit is contained in:
Nick Clifton 2014-04-24 15:49:37 +01:00
parent 01f9f808e2
commit 08937d8023
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-04-24 Nick Clifton <nickc@redhat.com>
* peXXigen.c (rsrc_print_section): Fix compile time warning for
32-bit hosts.
2014-04-24 Alan Modra <amodra@gmail.com>
PR 16867

View File

@ -2383,9 +2383,11 @@ rsrc_print_section (bfd * abfd, void * vfile)
}
if (regions.strings_start != NULL)
fprintf (file, " String table starts at %lx\n", regions.strings_start - regions.section_start);
fprintf (file, " String table starts at %03x\n",
(int) (regions.strings_start - regions.section_start));
if (regions.resource_start != NULL)
fprintf (file, " Resources start at %lx\n", regions.resource_start - regions.section_start);
fprintf (file, " Resources start at %03xx\n",
(int) (regions.resource_start - regions.section_start));
free (regions.section_start);
return TRUE;