[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/4] hw/i386/x86: Fix superfluous trailing semicolon
From: |
Peter Maydell |
Subject: |
Re: [PATCH 2/4] hw/i386/x86: Fix superfluous trailing semicolon |
Date: |
Thu, 4 Jul 2024 10:36:30 +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>
> ---
> hw/i386/x86.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/i386/x86.c b/hw/i386/x86.c
> index a4aa8e081098..01fc5e656272 100644
> --- a/hw/i386/x86.c
> +++ b/hw/i386/x86.c
> @@ -242,7 +242,7 @@ static void x86_machine_get_pit(Object *obj, Visitor *v,
> const char *name,
> static void x86_machine_set_pit(Object *obj, Visitor *v, const char *name,
> void *opaque, Error **errp)
> {
> - X86MachineState *x86ms = X86_MACHINE(obj);;
> + X86MachineState *x86ms = X86_MACHINE(obj);
>
> visit_type_OnOffAuto(v, name, &x86ms->pit, errp);
> }
> --
> 2.34.1
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
thanks
-- PMM