summary refs log tree commit diff stats
path: root/hw/core/machine.c
diff options
context:
space:
mode:
authorDou Liyang <douly.fnst@cn.fujitsu.com>2018-07-10 18:51:29 +0800
committerEduardo Habkost <ehabkost@redhat.com>2018-08-16 22:27:43 -0300
commit3aeaac8fa2d008a1f55b040fde6d4ec06f2f5146 (patch)
treebc0062bdc6254f8b4ff2827618c42bad2b8cf49d /hw/core/machine.c
parentbb16c0412a572c2c9cd44496deb3ad430bc49c1a (diff)
downloadfocaccia-qemu-3aeaac8fa2d008a1f55b040fde6d4ec06f2f5146.tar.gz
focaccia-qemu-3aeaac8fa2d008a1f55b040fde6d4ec06f2f5146.zip
machine: Fix coding style at machine_run_board_init()
Commit 7747abf11487 ("hw/machine: Remove the Zero check of
nb_numa_nodes for numa_complete_configuration()") removed the
curly brackets.  Re-add them.

Signed-off-by: Dou Liyang <douly.fnst@cn.fujitsu.com>
Message-Id: <20180710105129.23296-1-douly.fnst@cn.fujitsu.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
[ehabkost: rewrote commit message]
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/core/machine.c')
-rw-r--r--hw/core/machine.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/core/machine.c b/hw/core/machine.c
index a9aeb22f03..6b68e1218f 100644
--- a/hw/core/machine.c
+++ b/hw/core/machine.c
@@ -793,8 +793,9 @@ void machine_run_board_init(MachineState *machine)
     MachineClass *machine_class = MACHINE_GET_CLASS(machine);
 
     numa_complete_configuration(machine);
-    if (nb_numa_nodes)
+    if (nb_numa_nodes) {
         machine_numa_finish_cpu_init(machine);
+    }
 
     /* If the machine supports the valid_cpu_types check and the user
      * specified a CPU with -cpu check here that the user CPU is supported.