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.24-163-ge299076


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  e299076fefd9649f78f853865d4745043e50813c (commit)
       via  d145a456d9fcdc5d8560f4035bb6e35531ba8493 (commit)
      from  802c1c5a6539024af3c51fd11e6f3cda1f850c62 (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=e299076fefd9649f78f853865d4745043e50813c

commit e299076fefd9649f78f853865d4745043e50813c
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Sep 20 22:25:37 2016 +0200

    Fix old-style function definition
    
    * mach/errstring.c (mach_error_type, mach_error_string): Fix old-style
    function definition.

diff --git a/ChangeLog b/ChangeLog
index b022ba3..a962c8e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,7 @@
 	'sigcode', 'error' parameters with 'detail' parameter.  Fix code
 	accordingly.
 	* mach/mach_error.c (mach_error): Fix old-style function definition.
+	* mach/errstring.c (mach_error_type, mach_error_string): Likewise.
 
 2016-09-20  Paul E. Murphy  <murphyp@linux.vnet.ibm.com>
 
diff --git a/mach/errstring.c b/mach/errstring.c
index 52cf1eb..c00b02c 100644
--- a/mach/errstring.c
+++ b/mach/errstring.c
@@ -46,8 +46,7 @@
 extern void __mach_error_map_compat (mach_error_t *);
 
 const char *
-mach_error_type( err )
-	mach_error_t		err;
+mach_error_type(mach_error_t err)
 {
 	int sub, system;
 
@@ -86,8 +85,7 @@ mach_error_string_int(mach_error_t	err,
 }
 
 const char *
-mach_error_string( err )
-	mach_error_t		err;
+mach_error_string(mach_error_t err)
 {
 	boolean_t diag;
 

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=d145a456d9fcdc5d8560f4035bb6e35531ba8493

commit d145a456d9fcdc5d8560f4035bb6e35531ba8493
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Sep 20 22:24:13 2016 +0200

    mach: Fix old-style function definition.
    
    	* mach/mach_error.c (mach_error): Fix old-style function definition.

diff --git a/ChangeLog b/ChangeLog
index 88c766f..b022ba3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,7 @@
 	(_hurd_exception2signal): Replace 'exception', 'code', 'subcode',
 	'sigcode', 'error' parameters with 'detail' parameter.  Fix code
 	accordingly.
+	* mach/mach_error.c (mach_error): Fix old-style function definition.
 
 2016-09-20  Paul E. Murphy  <murphyp@linux.vnet.ibm.com>
 
diff --git a/mach/mach_error.c b/mach/mach_error.c
index 8bbb2ec..0d3082d 100644
--- a/mach/mach_error.c
+++ b/mach/mach_error.c
@@ -63,9 +63,7 @@
 extern char * mach_error_string_int(mach_error_t, boolean_t *);
 
 void
-mach_error( str, err )
-	char	*str;
-	mach_error_t		err;
+mach_error(char *str, mach_error_t err)
 {
 	char * err_str;
 	char buf[1024];

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

Summary of changes:
 ChangeLog         |    2 ++
 mach/errstring.c  |    6 ++----
 mach/mach_error.c |    4 +---
 3 files changed, 5 insertions(+), 7 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]