summaryrefslogtreecommitdiff
path: root/binutils/resres.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2008-07-07 00:44:41 +0000
committerAlan Modra <amodra@bigpond.net.au>2008-07-07 00:44:41 +0000
commit871fa8866882ba43825c5a7bbb2389f061055cde (patch)
tree7be9f201634ab7351c158c5d2e7ba4d29294c16a /binutils/resres.c
parentb86a8f55ac5083260316c2e1b5dcfc93a54fc67a (diff)
downloadbinutils-redhat-871fa8866882ba43825c5a7bbb2389f061055cde.tar.gz
* ieee.c (write_ieee_debugging_info): Use bfd_make_section_with_flags.
* nlmconv.c (main, powerpc_build_stubs): Likewise. * rescoff.c (write_coff_file): Likewise. * resres.c (write_res_file): Likewise. * windmc.c (windmc_write_bin): Likewise.
Diffstat (limited to 'binutils/resres.c')
-rw-r--r--binutils/resres.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/binutils/resres.c b/binutils/resres.c
index 49fb3fd14a..0ae5694a87 100644
--- a/binutils/resres.c
+++ b/binutils/resres.c
@@ -1,5 +1,5 @@
/* resres.c: read_res_file and write_res_file implementation for windres.
- Copyright 1998, 1999, 2001, 2002, 2007
+ Copyright 1998, 1999, 2001, 2002, 2007, 2008
Free Software Foundation, Inc.
Written by Anders Norlander <anorland@hem2.passagen.se>.
Rewritten by Kai Tietz, Onevision.
@@ -128,13 +128,11 @@ write_res_file (const char *fn,const rc_res_directory *resdir)
filename = fn;
abfd = windres_open_as_binary (filename, 0);
- sec = bfd_make_section (abfd, ".data");
+ sec = bfd_make_section_with_flags (abfd, ".data",
+ (SEC_HAS_CONTENTS | SEC_ALLOC
+ | SEC_LOAD | SEC_DATA));
if (sec == NULL)
bfd_fatal ("bfd_make_section");
- if (! bfd_set_section_flags (abfd, sec,
- (SEC_HAS_CONTENTS | SEC_ALLOC
- | SEC_LOAD | SEC_DATA)))
- bfd_fatal ("bfd_set_section_flags");
/* Requiring this is probably a bug in BFD. */
sec->output_section = sec;