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.29.9000-68-g8a11f97


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  8a11f97062ec7f1a2fed4aefa36c7bebecf87181 (commit)
      from  365f05c7a5f16aaaec06465ab6c89247c66b4574 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=8a11f97062ec7f1a2fed4aefa36c7bebecf87181

commit 8a11f97062ec7f1a2fed4aefa36c7bebecf87181
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Feb 15 13:45:19 2019 +0000

    Remove qualifier from function return type in tst-svc_register.c.
    
    Building the testsuite with -Wextra produces a warning in
    sunrpc/tst-svc_register.c for a useless qualifier on a function return
    type.  This patch removes that qualifier.
    
    Tested for x86_64.
    
    	* sunrpc/tst-svc_register.c (rpcbind_address): Remove qualifier
    	from function return type.

diff --git a/ChangeLog b/ChangeLog
index 0c45e9a..fee6c0f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2019-02-15  Joseph Myers  <joseph@codesourcery.com>
 
+	* sunrpc/tst-svc_register.c (rpcbind_address): Remove qualifier
+	from function return type.
+
 	* setjmp/tst-setjmp.c (jump): Use __attribute__ ((__noreturn__)).
 
 2019-02-14  Jan Kratochvil <jan.kratochvil@redhat.com>
diff --git a/sunrpc/tst-svc_register.c b/sunrpc/tst-svc_register.c
index 7590121..73f8db2 100644
--- a/sunrpc/tst-svc_register.c
+++ b/sunrpc/tst-svc_register.c
@@ -54,7 +54,7 @@ server_dispatch (struct svc_req *request, SVCXPRT *transport)
 }
 
 /* The port on which rpcbind listens for incoming requests.  */
-static inline const struct sockaddr_in
+static inline struct sockaddr_in
 rpcbind_address (void)
 {
   return (struct sockaddr_in)

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

Summary of changes:
 ChangeLog                 |    3 +++
 sunrpc/tst-svc_register.c |    2 +-
 2 files changed, 4 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]