From d146b1903f80af9b87199025a7a959c544a72ac6 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com> Date: Sat, 17 Jul 2021 08:50:02 +0200 Subject: [PATCH] Fix Linux kernel coding style error inline keyword should sit between storage class and type Signed-off-by: Dimitri Papadopoulos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com> --- ppp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppp.c b/ppp.c index 721431ae..8eba3c1b 100644 --- a/ppp.c +++ b/ppp.c @@ -190,7 +190,7 @@ static const char *lcp_names[] = { "Discard-Request", }; -inline static const char *proto_names(uint16_t proto) +static inline const char *proto_names(uint16_t proto) { static char unknown[21]; -- 2.50.1