diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2010-10-30 23:02:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2010-10-30 23:02:32 +0000 |
commit | b3cded65e92ba4d9b5e5a33fb95c4d551bda9c1b (patch) | |
tree | 69d40fbef2c0c4ee32fe97b7a28b510f2e3c2dbc /bfd/hppabsd-core.c | |
parent | 7a815afd9b5121ee0f65dc1e1de1c0de6de97679 (diff) |
Notes
Diffstat (limited to 'bfd/hppabsd-core.c')
-rw-r--r-- | bfd/hppabsd-core.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/bfd/hppabsd-core.c b/bfd/hppabsd-core.c index 67627e7a6664..7de1c0199bee 100644 --- a/bfd/hppabsd-core.c +++ b/bfd/hppabsd-core.c @@ -1,6 +1,6 @@ /* BFD back-end for HPPA BSD core files. - Copyright 1993, 1994, 1995, 1998, 1999, 2001, 2002, 2003, 2004, 2005 - Free Software Foundation, Inc. + Copyright 1993, 1994, 1995, 1998, 1999, 2001, 2002, 2003, 2004, 2005, + 2006, 2007 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -33,8 +33,8 @@ I would not expect this to be of use to any other host/target, but you never know. */ -#include "bfd.h" #include "sysdep.h" +#include "bfd.h" #include "libbfd.h" #if defined (HOST_HPPABSD) @@ -90,11 +90,10 @@ make_bfd_asection (abfd, name, flags, size, offset, alignment_power) { asection *asect; - asect = bfd_make_section (abfd, name); + asect = bfd_make_section_with_flags (abfd, name, flags); if (!asect) return NULL; - asect->flags = flags; asect->size = size; asect->filepos = offset; asect->alignment_power = alignment_power; |