This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] [OBV] Fix build -- missing ';'


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=c53ed7cf577806c9d7d658dec5b70b2de00ec825

commit c53ed7cf577806c9d7d658dec5b70b2de00ec825
Author: Keith Seitz <keiths@redhat.com>
Date:   Mon Mar 23 11:41:11 2015 -0700

    [OBV] Fix build -- missing ';'
    
    bfd/ChangeLog
    
    	* elfnn-aarch64.c (_bfd_aarch64_create_or_find_stub_sec): Add
    	missing ';'.

Diff:
---
 bfd/ChangeLog       | 5 +++++
 bfd/elfnn-aarch64.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 6b78cb1..060db14 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -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
diff --git a/bfd/elfnn-aarch64.c b/bfd/elfnn-aarch64.c
index c9e3a55..64b1ee4 100644
--- a/bfd/elfnn-aarch64.c
+++ b/bfd/elfnn-aarch64.c
@@ -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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]