Skip to content

Commit

Permalink
net: drop a space before tabs
Browse files Browse the repository at this point in the history
Fix a warning from checkpatch.pl:'please no space before tabs'
in include/net/af_unix.h

Signed-off-by: Bo YU <tsu.yubo@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Bo YU authored and David S. Miller committed Oct 31, 2018
1 parent c4147be commit b1c2344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/net/af_unix.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ struct unix_skb_parms {
u32 consumed;
} __randomize_layout;

#define UNIXCB(skb) (*(struct unix_skb_parms *)&((skb)->cb))
#define UNIXCB(skb) (*(struct unix_skb_parms *)&((skb)->cb))

#define unix_state_lock(s) spin_lock(&unix_sk(s)->lock)
#define unix_state_unlock(s) spin_unlock(&unix_sk(s)->lock)
Expand Down

0 comments on commit b1c2344

Please sign in to comment.