diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2018-12-14 13:30:55 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2018-12-14 13:30:55 +0000 |
commit | bbac02f1e8edfd0663543f6fdad1e7094d860b29 (patch) | |
tree | 22eb0cf69c80ee2718e7715868874346706eb91a | |
parent | 397cd31f01228c42d32261a6db3ead140cac8a7c (diff) | |
download | qemu-bbac02f1e8edfd0663543f6fdad1e7094d860b29.zip qemu-bbac02f1e8edfd0663543f6fdad1e7094d860b29.tar.gz qemu-bbac02f1e8edfd0663543f6fdad1e7094d860b29.tar.bz2 |
virt: Fix broken indentation
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 <peter.maydell@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20181212003147.29604-1-ehabkost@redhat.com
Fixes: 951597607696 ("virt: Eliminate separate instance_init functions")
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | hw/arm/virt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 17f1b49..5b67823 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 }, { } |