qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH v2 1/2] fix a typo of strict option


From: Amos Kong
Subject: [Qemu-devel] [PATCH v2 1/2] fix a typo of strict option
Date: Mon, 9 Dec 2013 16:05:57 +0800

The type of "strict" should be bool.

Signed-off-by: Amos Kong <address@hidden>
---
 vl.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/vl.c b/vl.c
index b0399de..12fe1f7 100644
--- a/vl.c
+++ b/vl.c
@@ -461,7 +461,7 @@ static QemuOptsList qemu_boot_opts = {
             .type = QEMU_OPT_STRING,
         }, {
             .name = "strict",
-            .type = QEMU_OPT_STRING,
+            .type = QEMU_OPT_BOOL,
         },
         { /*End of list */ }
     },
-- 
1.7.1




reply via email to

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