]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[OBV] Fix build -- missing ';'
authorKeith Seitz <keiths@redhat.com>
Mon, 23 Mar 2015 18:41:11 +0000 (11:41 -0700)
committerKeith Seitz <keiths@redhat.com>
Mon, 23 Mar 2015 18:47:26 +0000 (11:47 -0700)
bfd/ChangeLog

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

bfd/ChangeLog
bfd/elfnn-aarch64.c

index 6b78cb1df97829058d763200ae588c11f125540b..060db14b309bcae19651a98207256468c98e4d52 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-23  Marcus Shawcroft  <marcus.shawcroft@arm.com>
 
        * elfnn-aarch64.c (erratum_835769_scan): Factor stub name
index c9e3a559bc30ca29ddddda75cb2d55b0d4eb51d8..64b1ee4e0f8b0976653de92db61621e059b8cde8 100644 (file)
@@ -2368,7 +2368,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;