From: Colin Ian King Date: Tue, 13 Nov 2018 14:18:17 +0000 (+0000) Subject: net/decnet: add missing indentation X-Git-Tag: v5.0-rc1~129^2~290 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=99310e732a75c40fc9843f52b306fc9943bcce9d;p=thirdparty%2Fkernel%2Flinux.git net/decnet: add missing indentation There is a missing indentation before the declaration of port. Add it. Signed-off-by: Colin Ian King Signed-off-by: David S. Miller --- diff --git a/net/decnet/af_decnet.c b/net/decnet/af_decnet.c index 7d6ff983ba2cb..7aab5d088c725 100644 --- 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) {