Skip to content

Commit

Permalink
net/decnet: add missing indentation
Browse files Browse the repository at this point in the history
There is a missing indentation before the declaration of port. Add
it.

Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Colin Ian King authored and davem330 committed Nov 17, 2018
1 parent 790cd1a commit 99310e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/decnet/af_decnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ static int check_port(__le16 port)
static unsigned short port_alloc(struct sock *sk)
{
struct dn_scp *scp = DN_SK(sk);
static unsigned short port = 0x2000;
static unsigned short port = 0x2000;
unsigned short i_port = port;

while(check_port(cpu_to_le16(++port)) != 0) {
Expand Down

0 comments on commit 99310e7

Please sign in to comment.