add missing curly brackets to 'if' statement
Signed-off-by: Igor Mammedov <[email protected]>
---
vl.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/vl.c b/vl.c
index 316de54..9e60e5c 100644
--- a/vl.c
+++ b/vl.c
@@ -4150,8 +4150,9 @@ int main(int argc, char **argv, char **envp)
* and distribute the available memory equally across all nodes
*/
for (i = 0; i < nb_numa_nodes; i++) {
- if (node_mem[i] != 0)
+ if (node_mem[i] != 0) {
break;
+ }
}
if (i == nb_numa_nodes) {
uint64_t usedmem = 0;
--
1.7.1