Skip to content

Commit

Permalink
tipc: remove unneeded semicolon in trace.c
Browse files Browse the repository at this point in the history
Remove unneeded semicolon

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
YueHaibing authored and David S. Miller committed Jan 18, 2019
1 parent 8b59bfe commit d4fb30f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/tipc/trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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)
Expand Down

0 comments on commit d4fb30f

Please sign in to comment.