From: GiSeong Ji Date: Thu, 22 Aug 2024 09:18:06 +0000 (+0900) Subject: security: smack: Fix indentation in smack_netfilter.c X-Git-Tag: v6.12-rc1~121^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eabc10e60dac08b9f4f05872d785532d0856e09f;p=thirdparty%2Fkernel%2Flinux.git security: smack: Fix indentation in smack_netfilter.c Aligned parameters in the function declaration of smack_ip_output to adhere to the Linux kernel coding style guidelines. The parameters of the smack_ip_output function were previously misaligned, with the second and third parameters not aligned under the first parameter. This change corrects the indentation, improving code readability and maintaining consistency with the rest of the codebase. Signed-off-by: GiSeong Ji Signed-off-by: Casey Schaufler --- diff --git a/security/smack/smack_netfilter.c b/security/smack/smack_netfilter.c index b945c1d3a7431..709b1fcff514e 100644 --- a/security/smack/smack_netfilter.c +++ b/security/smack/smack_netfilter.c @@ -19,8 +19,8 @@ #include "smack.h" static unsigned int smack_ip_output(void *priv, - struct sk_buff *skb, - const struct nf_hook_state *state) + struct sk_buff *skb, + const struct nf_hook_state *state) { struct sock *sk = skb_to_full_sk(skb); struct socket_smack *ssp;