]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix build -- missing ';'
authorKeith Seitz <keiths@redhat.com>
Mon, 23 Mar 2015 18:41:11 +0000 (11:41 -0700)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 23 Aug 2017 20:37:13 +0000 (17:37 -0300)
bfd/ChangeLog

* elfnn-aarch64.c (_bfd_aarch64_create_or_find_stub_sec): Add
missing ';'.

bfd/ChangeLog
bfd/elfnn-aarch64.c

index c729f3754b7849ed9a74a3f75cedd07faf70990c..f435dfb792c7e2e2f23aa92fd6f8ac998881676f 100644 (file)
@@ -1,3 +1,8 @@
+2015-03-23  Keith Seitz  <keiths@redhat.com>
+
+       * elfnn-aarch64.c (_bfd_aarch64_create_or_find_stub_sec): Add
+       missing ';'.
+
 2015-03-04  Marcus Shawcroft  <marcus.shawcroft@arm.com>
 
        * elfnn-aarch64.c (elfNN_aarch64_size_stubs): Factor out
index 5c75225352b857b90603ca0660e164e651e9e6e0..410cb7e6eda3909f4c964c3eb41d3b7002f99671 100644 (file)
@@ -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;