summaryrefslogtreecommitdiff
path: root/bfd/bfd.c
diff options
context:
space:
mode:
authorThiemo Seufer <ths@networkno.de>2007-07-26 11:05:23 +0000
committerThiemo Seufer <ths@networkno.de>2007-07-26 11:05:23 +0000
commitb2ece17efaa6918b1996a46f4d5b1ccb670ba8c9 (patch)
tree56f295f318f1a406fcbe1fc92c0d6d9fda7c8dbe /bfd/bfd.c
parentb1d385e9c1e0bdc4e8dfef94bba69266ebc45a47 (diff)
downloadbinutils-redhat-b2ece17efaa6918b1996a46f4d5b1ccb670ba8c9.tar.gz
* bfd.c (_bfd_set_gp_value): Use abort instead of BFD_FAIL.
Diffstat (limited to 'bfd/bfd.c')
-rw-r--r--bfd/bfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/bfd.c b/bfd/bfd.c
index 2c5a42969a..60ad118aee 100644
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -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;