2022-12-19 06:47:11

by zhang.songyi

[permalink] [raw]
Subject: [PATCH linux-next] tools/rv: Remove unneeded semicolon

From: zhang songyi <[email protected]>

The semicolon after the "}" is unneeded.

Signed-off-by: zhang songyi <[email protected]>
---
tools/verification/rv/src/in_kernel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/verification/rv/src/in_kernel.c b/tools/verification/rv/src/in_kernel.c
index 50848d79b38b..ad28582bcf2b 100644
--- a/tools/verification/rv/src/in_kernel.c
+++ b/tools/verification/rv/src/in_kernel.c
@@ -519,7 +519,7 @@ static void ikm_usage_print_reactors(void)

start = ++end;
end = strstr(start, "\n");
- };
+ }

fprintf(stderr, "\n");
}
--
2.15.2


Subject: Re: [PATCH linux-next] tools/rv: Remove unneeded semicolon

On 12/19/22 07:31, [email protected] wrote:
> From: zhang songyi <[email protected]>
>
> The semicolon after the "}" is unneeded.
>
> Signed-off-by: zhang songyi <[email protected]>

Acked-by: Daniel Bristot de Oliveira <[email protected]>

-- Daniel