net/core/utils.c:388:2-3: Unneeded semicolon
Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci CC: Sagi Grimberg <[email protected]> Signed-off-by: Fengguang Wu <[email protected]> --- utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/core/utils.c +++ b/net/core/utils.c @@ -385,7 +385,7 @@ int inet_pton_with_scope(struct net *net break; default: pr_err("unexpected address family %d\n", af); - }; + } return -EINVAL; }
