[Openvpn-devel] use 'static inline' instead of 'inline static'

Message ID 20220117093508.17681-1-a@unstable.cc
State Accepted
Headers show
Series [Openvpn-devel] use 'static inline' instead of 'inline static' | expand

Commit Message

Antonio Quartulli Jan. 16, 2022, 10:35 p.m. UTC
There are 2 occurrences where the order 'inline static' is used when
defining a function, while the rest of the code uses the definitely
more common form 'static inline'.

Convert those 2 occurrences to the common format.

Reported-by: Lev Stipakov <lev@openvpn.net>
Signed-off-by: Antonio Quartulli <a@unstable.cc>
---
 src/openvpn/buffer.h | 2 +-
 src/openvpn/proto.h  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Lev Stipakov Jan. 16, 2022, 10:50 p.m. UTC | #1
Makes sense.

Acked-by: Lev Stipakov <lstipakov@gmail.com>

ma 17. tammik. 2022 klo 11.36 Antonio Quartulli (a@unstable.cc) kirjoitti:
>
> There are 2 occurrences where the order 'inline static' is used when
> defining a function, while the rest of the code uses the definitely
> more common form 'static inline'.
>
> Convert those 2 occurrences to the common format.
>
> Reported-by: Lev Stipakov <lev@openvpn.net>
> Signed-off-by: Antonio Quartulli <a@unstable.cc>
> ---
>  src/openvpn/buffer.h | 2 +-
>  src/openvpn/proto.h  | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/openvpn/buffer.h b/src/openvpn/buffer.h
> index 8017130f..d2dbb64b 100644
> --- a/src/openvpn/buffer.h
> +++ b/src/openvpn/buffer.h
> @@ -198,7 +198,7 @@ bool buf_init_debug(struct buffer *buf, int offset, const char *file, int line);
>
>
>  /* inline functions */
> -inline static void
> +static inline void
>  gc_freeaddrinfo_callback(void *addr)
>  {
>      freeaddrinfo((struct addrinfo *) addr);
> diff --git a/src/openvpn/proto.h b/src/openvpn/proto.h
> index 94010a98..0062951d 100644
> --- a/src/openvpn/proto.h
> +++ b/src/openvpn/proto.h
> @@ -251,7 +251,7 @@ struct ip_tcp_udp_hdr {
>   * This returns an ip protocol version of packet inside tun
>   * and offset of IP header (via parameter).
>   */
> -inline static int
> +static inline int
>  get_tun_ip_ver(int tunnel_type, struct buffer *buf, int *ip_hdr_offset)
>  {
>      int ip_ver = -1;
> --
> 2.34.1
>
>
>
> _______________________________________________
> Openvpn-devel mailing list
> Openvpn-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/openvpn-devel
Gert Doering Jan. 18, 2022, 2:01 a.m. UTC | #2
Looks good.  Not tested beyond a simple compile test.

Your patch has been applied to the master branch.

commit 943fb256ded24e8637a2bbaabd525e4b85ecc810
Author: Antonio Quartulli
Date:   Mon Jan 17 10:35:08 2022 +0100

     use 'static inline' instead of 'inline static'

     Signed-off-by: Antonio Quartulli <a@unstable.cc>
     Acked-by: Lev Stipakov <lstipakov@gmail.com>
     Message-Id: <20220117093508.17681-1-a@unstable.cc>
     URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg23554.html
     Signed-off-by: Gert Doering <gert@greenie.muc.de>


--
kind regards,

Gert Doering

Patch

diff --git a/src/openvpn/buffer.h b/src/openvpn/buffer.h
index 8017130f..d2dbb64b 100644
--- a/src/openvpn/buffer.h
+++ b/src/openvpn/buffer.h
@@ -198,7 +198,7 @@  bool buf_init_debug(struct buffer *buf, int offset, const char *file, int line);
 
 
 /* inline functions */
-inline static void
+static inline void
 gc_freeaddrinfo_callback(void *addr)
 {
     freeaddrinfo((struct addrinfo *) addr);
diff --git a/src/openvpn/proto.h b/src/openvpn/proto.h
index 94010a98..0062951d 100644
--- a/src/openvpn/proto.h
+++ b/src/openvpn/proto.h
@@ -251,7 +251,7 @@  struct ip_tcp_udp_hdr {
  * This returns an ip protocol version of packet inside tun
  * and offset of IP header (via parameter).
  */
-inline static int
+static inline int
 get_tun_ip_ver(int tunnel_type, struct buffer *buf, int *ip_hdr_offset)
 {
     int ip_ver = -1;