diff options
author | Thiemo Seufer <ths@networkno.de> | 2007-07-26 11:05:23 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2007-07-26 11:05:23 +0000 |
commit | c2c966314bffced41c51b7bd0562c1d7a5c679ea (patch) | |
tree | 212fc935db4061eb9534638acb83195b5f9dfbd8 /bfd/bfd.c | |
parent | 9ceb0b4c1da57bed5ba5af056185f448fdc79f43 (diff) | |
download | gdb-c2c966314bffced41c51b7bd0562c1d7a5c679ea.zip gdb-c2c966314bffced41c51b7bd0562c1d7a5c679ea.tar.gz gdb-c2c966314bffced41c51b7bd0562c1d7a5c679ea.tar.bz2 |
* bfd.c (_bfd_set_gp_value): Use abort instead of BFD_FAIL.
Diffstat (limited to 'bfd/bfd.c')
-rw-r--r-- | bfd/bfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1020,7 +1020,7 @@ void _bfd_set_gp_value (bfd *abfd, bfd_vma v) { if (! abfd) - BFD_FAIL (); + abort (); if (abfd->format != bfd_object) return; |