summaryrefslogtreecommitdiff
path: root/bfd/mach-o.c
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2011-08-17 10:17:38 +0000
committerTristan Gingold <gingold@adacore.com>2011-08-17 10:17:38 +0000
commita6458c5f0c569788c808a21710d3da88ac4ea44f (patch)
tree85cb91d39acdc3d8a674333f63737853f2da13fc /bfd/mach-o.c
parenta51e98a30b095594dc3fa7657fefa8d93a4c3c8f (diff)
downloadbinutils-redhat-a6458c5f0c569788c808a21710d3da88ac4ea44f.tar.gz
2011-08-17 Tristan Gingold <gingold@adacore.com>
* mach-o.c (bfd_mach_o_write_section_32): Fix typo.
Diffstat (limited to 'bfd/mach-o.c')
-rw-r--r--bfd/mach-o.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/mach-o.c b/bfd/mach-o.c
index 832bc98a14..6b2d3d40e6 100644
--- a/bfd/mach-o.c
+++ b/bfd/mach-o.c
@@ -957,7 +957,7 @@ bfd_mach_o_write_section_32 (bfd *abfd, bfd_mach_o_section *section)
struct mach_o_section_32_external raw;
memcpy (raw.sectname, section->sectname, 16);
- memcpy (raw.segname + 16, section->segname, 16);
+ memcpy (raw.segname, section->segname, 16);
bfd_h_put_32 (abfd, section->addr, raw.addr);
bfd_h_put_32 (abfd, section->size, raw.size);
bfd_h_put_32 (abfd, section->offset, raw.offset);