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] Fix typo/thinko in last change.


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

commit c68033869a714b79f20d47ca54138c13439c05c0
Author: Jeff Law <law@redhat.com>
Date:   Thu Dec 13 15:45:24 2018 -0700

    Fix typo/thinko in last change.
    
    	* dw2gencfi.c (output_cie): Add missing semicolon in last
    	change.

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

diff --git a/gas/ChangeLog b/gas/ChangeLog
index dc3aa7c..bac853d 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2018-12-13  Jeff Law  <law@redhat.com>
+
+	* dw2gencfi.c (output_cie): Add missing semicolon in last
+	change.
+
 2018-12-13  Sam Tebbs  <sam.tebbs@arm.com>
 
 	* config/tc-aarch64.h (enum pointer_auth_key,
diff --git a/gas/dw2gencfi.c b/gas/dw2gencfi.c
index 02d7f3c..f9a0b44 100644
--- a/gas/dw2gencfi.c
+++ b/gas/dw2gencfi.c
@@ -1863,7 +1863,7 @@ output_cie (struct cie_entry *cie, bfd_boolean eh_frame, int align)
 	out_one ('L');
       out_one ('R');
 #ifdef tc_output_cie_extra
-      tc_output_cie_extra (cie)
+      tc_output_cie_extra (cie);
 #endif
     }
   if (cie->signal_frame)


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