From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gX0v3-00015F-5s for qemu-devel@nongnu.org; Wed, 12 Dec 2018 04:35:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gX0uz-0001Vv-Pb for qemu-devel@nongnu.org; Wed, 12 Dec 2018 04:35:05 -0500 References: <20181212003147.29604-1-ehabkost@redhat.com> From: Thomas Huth Message-ID: Date: Wed, 12 Dec 2018 10:34:51 +0100 MIME-Version: 1.0 In-Reply-To: <20181212003147.29604-1-ehabkost@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] virt: Fix broken indentation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost , qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, Peter Maydell , qemu-arm@nongnu.org On 2018-12-12 01:31, Eduardo Habkost wrote: > I introduced indentation using tabs instead of spaces in another > commit. Peter reported the problem, and I failed to fix that > before sending my pull request. > > Reported-by: Peter Maydell > Fixes: 951597607696 ("virt: Eliminate separate instance_init functions") > Signed-off-by: Eduardo Habkost > --- > hw/arm/virt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/arm/virt.c b/hw/arm/virt.c > index 17f1b49d11..5b678237b7 100644 > --- a/hw/arm/virt.c > +++ b/hw/arm/virt.c > @@ -1854,7 +1854,7 @@ static const TypeInfo virt_machine_info = { > .instance_size = sizeof(VirtMachineState), > .class_size = sizeof(VirtMachineClass), > .class_init = virt_machine_class_init, > - .instance_init = virt_instance_init, > + .instance_init = virt_instance_init, > .interfaces = (InterfaceInfo[]) { > { TYPE_HOTPLUG_HANDLER }, > { } > Reviewed-by: Thomas Huth