diff options
author | Tom Rix <trix@redhat.com> | 2020-11-01 07:58:22 -0800 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-11-02 17:50:43 -0800 |
commit | f2219c322ff2d91afbaa1236f1f91a28b785cd1e (patch) | |
tree | 406be0201c337ac413940a3a19c3f44a7b8e3b42 /net/tipc/link.c | |
parent | 0b6f164d5a52920a4df854d56859a406042946f8 (diff) | |
download | linux-stable-f2219c322ff2d91afbaa1236f1f91a28b785cd1e.tar.gz linux-stable-f2219c322ff2d91afbaa1236f1f91a28b785cd1e.tar.bz2 linux-stable-f2219c322ff2d91afbaa1236f1f91a28b785cd1e.zip |
tipc: remove unneeded semicolon
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201101155822.2294856-1-trix@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/tipc/link.c')
-rw-r--r-- | net/tipc/link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c index 06b880da2a8e..97b1c6bd45dc 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c @@ -1260,7 +1260,7 @@ static bool tipc_data_input(struct tipc_link *l, struct sk_buff *skb, pr_warn("Dropping received illegal msg type\n"); kfree_skb(skb); return true; - }; + } } /* tipc_link_input - process packet that has passed link protocol check |