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] Remove an extra ';'


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

commit fd5a150943c9a99a568ea6459a5d70a24dee3755
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Sat Apr 11 12:06:33 2015 -0700

    Remove an extra ';'
    
    	* plugin.c (plugin_load_plugins): Removed an extra ';'.

Diff:
---
 ld/ChangeLog | 4 ++++
 ld/plugin.c  | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ld/ChangeLog b/ld/ChangeLog
index 5b65746..bcad3f9 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2015-04-11  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* plugin.c (plugin_load_plugins): Removed an extra ';'.
+
 2015-04-10  Nick Clifton  <nickc@redhat.com>
 
 	PR binutils/18198
diff --git a/ld/plugin.c b/ld/plugin.c
index 31527ae..81bf143 100644
--- a/ld/plugin.c
+++ b/ld/plugin.c
@@ -1003,7 +1003,7 @@ plugin_load_plugins (void)
   register_ld_plugin_object_p (plugin_object_p);
 
 #if HAVE_MMAP && HAVE_GETPAGESIZE
-  plugin_pagesize = getpagesize ();;
+  plugin_pagesize = getpagesize ();
 #endif
 }


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