mirror of https://gitee.com/openkylin/linux.git
net/decnet: add missing indentation
There is a missing indentation before the declaration of port. Add it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
790cd1a8f0
commit
99310e732a
|
@ -192,7 +192,7 @@ static int check_port(__le16 port)
|
||||||
static unsigned short port_alloc(struct sock *sk)
|
static unsigned short port_alloc(struct sock *sk)
|
||||||
{
|
{
|
||||||
struct dn_scp *scp = DN_SK(sk);
|
struct dn_scp *scp = DN_SK(sk);
|
||||||
static unsigned short port = 0x2000;
|
static unsigned short port = 0x2000;
|
||||||
unsigned short i_port = port;
|
unsigned short i_port = port;
|
||||||
|
|
||||||
while(check_port(cpu_to_le16(++port)) != 0) {
|
while(check_port(cpu_to_le16(++port)) != 0) {
|
||||||
|
|
Loading…
Reference in New Issue