From: Jerome Guitton Date: Thu, 21 Apr 2005 10:47:49 +0000 (+0000) Subject: * som.c (som_bfd_print_private_bfd_data): Add explicit cast to long X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=0858d3ec47c3fb12bcee67f07e07998c75a0e9ec;p=deliverable%2Fbinutils-gdb.git * som.c (som_bfd_print_private_bfd_data): Add explicit cast to long for struct som_exec_auxhdr fields. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9bacdd8a0f..7d85097481 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2005-04-21 Jerome Guitton + + * som.c (som_bfd_print_private_bfd_data): Add explicit cast to long + for struct som_exec_auxhdr fields. + 2005-04-21 Nick Clifton * aout-adobe.c: Convert to ISO C and fix formatting. diff --git a/bfd/som.c b/bfd/som.c index 6ec9befce8..05e6d168d0 100644 --- a/bfd/som.c +++ b/bfd/som.c @@ -5080,16 +5080,20 @@ som_bfd_print_private_bfd_data (bfd *abfd, void *farg) fprintf (f, "\n"); fprintf (f, " type %#x\n", auxhdr->type); fprintf (f, " length %#x\n", auxhdr->length); - fprintf (f, " text size %#lx\n", exec_header->exec_tsize); - fprintf (f, " text memory offset %#lx\n", exec_header->exec_tmem); - fprintf (f, " text file offset %#lx\n", exec_header->exec_tfile); - fprintf (f, " data size %#lx\n", exec_header->exec_dsize); - fprintf (f, " data memory offset %#lx\n", exec_header->exec_dmem); - fprintf (f, " data file offset %#lx\n", exec_header->exec_dfile); - fprintf (f, " bss size %#lx\n", exec_header->exec_bsize); - fprintf (f, " entry point %#lx\n", exec_header->exec_entry); - fprintf (f, " loader flags %#lx\n", exec_header->exec_flags); - fprintf (f, " bss initializer %#lx\n", exec_header->exec_bfill); + + /* Note that, depending on the HP-UX version, the following fields can be + either ints, or longs. */ + + fprintf (f, " text size %#lx\n", (long) exec_header->exec_tsize); + fprintf (f, " text memory offset %#lx\n", (long) exec_header->exec_tmem); + fprintf (f, " text file offset %#lx\n", (long) exec_header->exec_tfile); + fprintf (f, " data size %#lx\n", (long) exec_header->exec_dsize); + fprintf (f, " data memory offset %#lx\n", (long) exec_header->exec_dmem); + fprintf (f, " data file offset %#lx\n", (long) exec_header->exec_dfile); + fprintf (f, " bss size %#lx\n", (long) exec_header->exec_bsize); + fprintf (f, " entry point %#lx\n", (long) exec_header->exec_entry); + fprintf (f, " loader flags %#lx\n", (long) exec_header->exec_flags); + fprintf (f, " bss initializer %#lx\n", (long) exec_header->exec_bfill); } return TRUE;