From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55927) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vpvcd-0008Ru-4z for qemu-devel@nongnu.org; Mon, 09 Dec 2013 02:51:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VpvcX-0000Fa-52 for qemu-devel@nongnu.org; Mon, 09 Dec 2013 02:51:19 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54523) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VpvcW-0000FW-TQ for qemu-devel@nongnu.org; Mon, 09 Dec 2013 02:51:13 -0500 From: Amos Kong Date: Mon, 9 Dec 2013 15:51:44 +0800 Message-Id: <1386575505-10152-2-git-send-email-akong@redhat.com> In-Reply-To: <1386575505-10152-1-git-send-email-akong@redhat.com> References: <1386575505-10152-1-git-send-email-akong@redhat.com> Subject: [Qemu-devel] [PATCH 1/2] fix a typo of strict option List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, aliguori@us.ibm.com, armbru@redhat.com The type of "strict" should be bool. Signed-off-by: Amos Kong --- 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