Message ID | 20240704084759.1824420-3-zhao1.liu@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | trivial: Fix superfluous trailing semicolon | expand |
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
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); }
Signed-off-by: Zhao Liu <zhao1.liu@intel.com> --- hw/i386/x86.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)