ipc: remove braces for single statements
Deal with checkpatch messages: WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Davidlohr Bueso <davidlohr@hp.com> Cc: Aswin Chandramouleeswaran <aswin@hp.com> Cc: Rik van Riel <riel@redhat.com> Acked-by: Manfred Spraul <manfred@colorfullife.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
8001c85810
commit
3ab08fe204
@@ -1303,11 +1303,11 @@ retry:
|
||||
out_fput:
|
||||
fdput(f);
|
||||
out:
|
||||
if (sock) {
|
||||
if (sock)
|
||||
netlink_detachskb(sock, nc);
|
||||
} else if (nc) {
|
||||
else if (nc)
|
||||
dev_kfree_skb(nc);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user