Message ID | 20240802113436.448939-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | e8fc78eb658a1ebcb871e93bbe4f18e9d51fdd3a |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [next] tools: ynl: remove extraneous ; after statements | expand |
Colin Ian King <colin.i.king@gmail.com> writes: > There are a couple of statements with two following semicolons, > replace these with just one semicolon. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Reviewed-by: Donald Hunter <donald.hunter@gmail.com>
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Fri, 2 Aug 2024 12:34:36 +0100 you wrote: > There are a couple of statements with two following semicolons, > replace these with just one semicolon. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > tools/net/ynl/lib/ynl.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Here is the summary with links: - [next] tools: ynl: remove extraneous ; after statements https://git.kernel.org/netdev/net-next/c/e8fc78eb658a You are awesome, thank you!
diff --git a/tools/net/ynl/lib/ynl.c b/tools/net/ynl/lib/ynl.c index fcb18a5a6d70..e16cef160bc2 100644 --- a/tools/net/ynl/lib/ynl.c +++ b/tools/net/ynl/lib/ynl.c @@ -696,14 +696,14 @@ ynl_sock_create(const struct ynl_family *yf, struct ynl_error *yse) addr.nl_family = AF_NETLINK; if (bind(ys->socket, (struct sockaddr *)&addr, sizeof(addr)) < 0) { __perr(yse, "unable to bind to a socket address"); - goto err_close_sock;; + goto err_close_sock; } memset(&addr, 0, sizeof(addr)); addrlen = sizeof(addr); if (getsockname(ys->socket, (struct sockaddr *)&addr, &addrlen) < 0) { __perr(yse, "unable to read socket address"); - goto err_close_sock;; + goto err_close_sock; } ys->portid = addr.nl_pid; ys->seq = random();
There are a couple of statements with two following semicolons, replace these with just one semicolon. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- tools/net/ynl/lib/ynl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)