diff mbox

[1/2] fix a typo of strict option

Message ID 1386575505-10152-2-git-send-email-akong@redhat.com
State New
Headers show

Commit Message

Amos Kong Dec. 9, 2013, 7:51 a.m. UTC
The type of "strict" should be bool.

Signed-off-by: Amos Kong <akong@redhat.com>
---
 vl.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

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 */ }
     },