diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-01-17 15:57:08 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-01-18 09:04:43 +0300 |
commit | d4fb30f6f1b1822629508e562e3228f2a44cf620 (patch) | |
tree | e8559ca6839cd92a8308f55ba1f7b0cac945908e /net/tipc | |
parent | 8b59bfe83cf15f755024e88812e057af7341f525 (diff) | |
download | linux-d4fb30f6f1b1822629508e562e3228f2a44cf620.tar.xz |
tipc: remove unneeded semicolon in trace.c
Remove unneeded semicolon
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc')
-rw-r--r-- | net/tipc/trace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/trace.c b/net/tipc/trace.c index 964823841efe..265f6a26aa3d 100644 --- a/net/tipc/trace.c +++ b/net/tipc/trace.c @@ -111,7 +111,7 @@ int tipc_skb_dump(struct sk_buff *skb, bool more, char *buf) break; default: break; - }; + } i += scnprintf(buf + i, sz - i, " | %u", msg_src_droppable(hdr)); i += scnprintf(buf + i, sz - i, " %u", @@ -122,7 +122,7 @@ int tipc_skb_dump(struct sk_buff *skb, bool more, char *buf) default: /* need more? */ break; - }; + } i += scnprintf(buf + i, sz - i, "\n"); if (!more) |