summaryrefslogtreecommitdiff
path: root/bfd/trad-core.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2000-02-21 12:01:27 +0000
committerAlan Modra <amodra@bigpond.net.au>2000-02-21 12:01:27 +0000
commit2231c9bce55927df486bdabafb3c9bc1a87eac15 (patch)
treeded1e1f6949dd3aecf42ada754f6a27bde3c1f67 /bfd/trad-core.c
parent7bc8ade9d2c47de2d000109dacf967170aa75d9f (diff)
downloadbinutils-redhat-2231c9bce55927df486bdabafb3c9bc1a87eac15.tar.gz
This lot mainly cleans up `comparison between signed and unsigned' gcc
warnings. One usused var, and a macro parenthesis fix too. Also check input sections are elf when doing gc in elflink.h.
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 92c5b6324e..633c53d983 100644
--- a/bfd/trad-core.c
+++ b/bfd/trad-core.c
@@ -202,7 +202,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 = (asection *) (0 - (bfd_vma) u.u_ar0);
+ core_regsec (abfd)->vma = - (bfd_vma) u.u_ar0;
core_datasec (abfd)->filepos = NBPG * UPAGES;
core_stacksec (abfd)->filepos = (NBPG * UPAGES) + NBPG * u.u_dsize