Le 15/09/2019 à 23:39, Philippe Mathieu-Daudé a écrit : > If the format is not the syscall last argument, a comma is append. > > Signed-off-by: Philippe Mathieu-Daudé <[email protected]> > Reviewed-by: Laurent Vivier <[email protected]> > --- > checkpatch error: > ERROR: storage class should be at the beginning of the declaration > --- > linux-user/strace.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/linux-user/strace.c b/linux-user/strace.c > index 6e82f6197a..3ccefb9839 100644 > --- a/linux-user/strace.c > +++ b/linux-user/strace.c > @@ -67,7 +67,7 @@ UNUSED static void print_timeval(abi_ulong, int); > UNUSED static void print_timezone(abi_ulong, int); > UNUSED static void print_number(abi_long, int); > UNUSED static void print_signal(abi_ulong, int); > -UNUSED static void print_sockaddr(abi_ulong addr, abi_long addrlen); > +UNUSED static void print_sockaddr(abi_ulong addr, abi_long addrlen, int);
You mix argument declaration with a name and without a name, make choice. Thanks, Laurent
