diff mbox

[1/6] vl.c: fix style issue

Message ID 1392652187-28381-2-git-send-email-imammedo@redhat.com
State New
Headers show

Commit Message

Igor Mammedov Feb. 17, 2014, 3:49 p.m. UTC
add missing curly brackets to 'if' statement

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
---
 vl.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
diff mbox

Patch

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;