diff options
author | Keith Seitz <keiths@redhat.com> | 2015-03-23 11:41:11 -0700 |
---|---|---|
committer | Andrew Hsieh <andrewhsieh@google.com> | 2015-03-30 21:39:06 -0700 |
commit | 0ce0a704592f94f77c8b2800aee9810891f9e05f (patch) | |
tree | 53d23079aa3d122f0b91105339773567a9122e9c /binutils-2.25/bfd | |
parent | b78dd2e814f6830db580106b3c5a91206dcda9e4 (diff) | |
download | toolchain_binutils-0ce0a704592f94f77c8b2800aee9810891f9e05f.zip toolchain_binutils-0ce0a704592f94f77c8b2800aee9810891f9e05f.tar.gz toolchain_binutils-0ce0a704592f94f77c8b2800aee9810891f9e05f.tar.bz2 |
[OBV] Fix build -- missing ';'
bfd/ChangeLog
* elfnn-aarch64.c (_bfd_aarch64_create_or_find_stub_sec): Add
missing ';'.
Change-Id: I174cb391792c428521a9334eb166cdc8c979b12f
Diffstat (limited to 'binutils-2.25/bfd')
-rw-r--r-- | binutils-2.25/bfd/elfnn-aarch64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils-2.25/bfd/elfnn-aarch64.c b/binutils-2.25/bfd/elfnn-aarch64.c index 5c75225..410cb7e 100644 --- a/binutils-2.25/bfd/elfnn-aarch64.c +++ b/binutils-2.25/bfd/elfnn-aarch64.c @@ -2345,7 +2345,7 @@ _bfd_aarch64_create_or_find_stub_sec (asection *section, stub_sec = htab->stub_group[link_sec->id].stub_sec; if (stub_sec == NULL) { - stub_sec = _bfd_aarch64_create_stub_section (link_sec, htab) + stub_sec = _bfd_aarch64_create_stub_section (link_sec, htab); if (stub_sec == NULL) return NULL; htab->stub_group[link_sec->id].stub_sec = stub_sec; |