summaryrefslogtreecommitdiff
path: root/bfd/trad-core.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2002-02-11 02:17:39 +0000
committerDaniel Jacobowitz <drow@false.org>2002-02-11 02:17:39 +0000
commitd426c6b07f24df631df0e290bf3034b61498aee5 (patch)
treec79fa062451fa1d359dbe5543e1247e6d98bce5f /bfd/trad-core.c
parentcd0b1e215c70e35da5d67ca09f0108278ed5f0b6 (diff)
downloadbinutils-gdb-d426c6b07f24df631df0e290bf3034b61498aee5.tar.gz
2002-02-10 Daniel Jacobowitz <drow@mvista.com>
* coff-rs6000.c (xcoff_generate_rtinit): Silence uninitialized variable warnings. * elf32-sh.c (sh_elf_relax_section): Silence signed/unsigned comparison warning. * trad-core.c (trad_unix_core_file_p): Silence pointer/integer cast warnings for the common case.
Diffstat (limited to 'bfd/trad-core.c')
-rw-r--r--bfd/trad-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/trad-core.c b/bfd/trad-core.c
index aed0b50d1fc..e27cd35e867 100644
--- a/bfd/trad-core.c
+++ b/bfd/trad-core.c
@@ -211,7 +211,7 @@ trad_unix_core_file_p (abfd)
0 is at the place pointed to by u_ar0 (by setting the vma of the start
of the section to -u_ar0). GDB uses this info to locate the regs,
using minor trickery to get around the offset-or-absolute-addr problem. */
- core_regsec (abfd)->vma = - (bfd_vma) u.u_ar0;
+ core_regsec (abfd)->vma = - (bfd_vma) (unsigned long) u.u_ar0;
core_datasec (abfd)->filepos = NBPG * UPAGES;
core_stacksec (abfd)->filepos = (NBPG * UPAGES) + NBPG * u.u_dsize