This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc 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]

GNU C Library master sources branch, master, updated. glibc-2.15-951-g5991034


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  59910343fc16d7b9677a780d8f362316c2b19c93 (commit)
      from  2e4c1e9edb2a0f25a4d8de961dd4b7518c88bc54 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=59910343fc16d7b9677a780d8f362316c2b19c93

commit 59910343fc16d7b9677a780d8f362316c2b19c93
Author: Andreas Jaeger <aj@suse.de>
Date:   Thu May 17 22:00:57 2012 +0200

    Fix warning
    
    Fixes:
    tst-relsort1.c:6:1: warning: function declaration isnâ??t a prototype
    [-Wstrict-prototypes]

diff --git a/ChangeLog b/ChangeLog
index 793bc73..d360f1b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-05-17  Andreas Jaeger  <aj@suse.de>
+
+	* elf/tst-relsort1.c (do_test): Fix function declaration to avoid
+	warning.
+
 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* sysdeps/x86_64/tst-mallocalign1.c (test): Cast to unsigned long.
diff --git a/elf/tst-relsort1.c b/elf/tst-relsort1.c
index 972100c..a87b138 100644
--- a/elf/tst-relsort1.c
+++ b/elf/tst-relsort1.c
@@ -3,7 +3,7 @@
 
 
 static int
-do_test ()
+do_test (void)
 {
   const char lib[] = "$ORIGIN/tst-relsort1mod1.so";
   void *h = dlopen (lib, RTLD_NOW);

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog          |    5 +++++
 elf/tst-relsort1.c |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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