Skip to content

Commit eabc10e

Browse files
jiggyjiggycschaufler
authored andcommitted
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 <[email protected]> Signed-off-by: Casey Schaufler <[email protected]>
1 parent 47ac09b commit eabc10e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

security/smack/smack_netfilter.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
#include "smack.h"
2020

2121
static unsigned int smack_ip_output(void *priv,
22-
struct sk_buff *skb,
23-
const struct nf_hook_state *state)
22+
struct sk_buff *skb,
23+
const struct nf_hook_state *state)
2424
{
2525
struct sock *sk = skb_to_full_sk(skb);
2626
struct socket_smack *ssp;

0 commit comments

Comments
 (0)