summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Seitz <keiths@redhat.com>2015-03-23 11:41:11 -0700
committerAndrew Hsieh <andrewhsieh@google.com>2015-03-30 21:39:06 -0700
commit0ce0a704592f94f77c8b2800aee9810891f9e05f (patch)
tree53d23079aa3d122f0b91105339773567a9122e9c
parentb78dd2e814f6830db580106b3c5a91206dcda9e4 (diff)
downloadtoolchain_binutils-0ce0a704592f94f77c8b2800aee9810891f9e05f.tar.gz
toolchain_binutils-0ce0a704592f94f77c8b2800aee9810891f9e05f.tar.bz2
toolchain_binutils-0ce0a704592f94f77c8b2800aee9810891f9e05f.zip
[OBV] Fix build -- missing ';'
bfd/ChangeLog * elfnn-aarch64.c (_bfd_aarch64_create_or_find_stub_sec): Add missing ';'. Change-Id: I174cb391792c428521a9334eb166cdc8c979b12f
-rw-r--r--binutils-2.25/bfd/elfnn-aarch64.c2
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 5c752253..410cb7e6 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;