From: Samuel Thibault Date: Tue, 20 Sep 2016 20:25:37 +0000 (+0200) Subject: Fix old-style function definition X-Git-Tag: glibc-2.25~515 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e299076fefd9649f78f853865d4745043e50813c;p=thirdparty%2Fglibc.git 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 b022ba3a651..a962c8e8904 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 diff --git a/mach/errstring.c b/mach/errstring.c index 52cf1eb46ef..c00b02c2a69 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;