[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 3/4] util/oslib-posix: Fix superfluous trailing semicolon
From: |
Peter Maydell |
Subject: |
Re: [PATCH 3/4] util/oslib-posix: Fix superfluous trailing semicolon |
Date: |
Thu, 4 Jul 2024 10:35:36 +0100 |
On Thu, 4 Jul 2024 at 09:33, Zhao Liu <zhao1.liu@intel.com> wrote:
>
> Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
> ---
> util/oslib-posix.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/util/oslib-posix.c b/util/oslib-posix.c
> index e76441695bdc..b090fe0eed0d 100644
> --- a/util/oslib-posix.c
> +++ b/util/oslib-posix.c
> @@ -263,7 +263,7 @@ int qemu_socketpair(int domain, int type, int protocol,
> int sv[2])
> return ret;
> }
> #endif
> - ret = socketpair(domain, type, protocol, sv);;
> + ret = socketpair(domain, type, protocol, sv);
> if (ret == 0) {
> qemu_set_cloexec(sv[0]);
> qemu_set_cloexec(sv[1]);
> --
> 2.34.1
>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
thanks
-- PMM