projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
790cd1a
)
net/decnet: add missing indentation
author
Colin Ian King
<colin.king@canonical.com>
Tue, 13 Nov 2018 14:18:17 +0000
(14:18 +0000)
committer
David S. Miller
<davem@davemloft.net>
Sat, 17 Nov 2018 03:42:49 +0000
(19:42 -0800)
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>
net/decnet/af_decnet.c
patch
|
blob
|
history
diff --git
a/net/decnet/af_decnet.c
b/net/decnet/af_decnet.c
index 7d6ff983ba2cbbf7915a61ffad57e52f66f3a193..7aab5d088c7255599bb1aaad0eef59b034a968a2 100644
(file)
--- a/
net/decnet/af_decnet.c
+++ b/
net/decnet/af_decnet.c
@@
-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) {