Skip to content

Commit

Permalink
inet: fix spacing in assignment
Browse files Browse the repository at this point in the history
Found using checkpatch.pl

Signed-off-by: Camelia Groza <camelia.groza@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Camelia Groza authored and David S. Miller committed Jul 11, 2013
1 parent f2966cd commit 3b8ccd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv4/inet_hashtables.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ void inet_unhash(struct sock *sk)
lock = inet_ehash_lockp(hashinfo, sk->sk_hash);

spin_lock_bh(lock);
done =__sk_nulls_del_node_init_rcu(sk);
done = __sk_nulls_del_node_init_rcu(sk);
if (done)
sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
spin_unlock_bh(lock);
Expand Down

0 comments on commit 3b8ccd4

Please sign in to comment.