qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/6] vl.c: fix style issue


From: Igor Mammedov
Subject: [Qemu-devel] [PATCH 1/6] vl.c: fix style issue
Date: Mon, 17 Feb 2014 16:49:42 +0100

add missing curly brackets to 'if' statement

Signed-off-by: Igor Mammedov <address@hidden>
---
 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]