From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58143) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VpvqR-0005Tc-CX for qemu-devel@nongnu.org; Mon, 09 Dec 2013 03:05:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VpvqL-0004Jz-6I for qemu-devel@nongnu.org; Mon, 09 Dec 2013 03:05:35 -0500 Received: from mx1.redhat.com ([209.132.183.28]:63501) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VpvqK-0004Js-Uq for qemu-devel@nongnu.org; Mon, 09 Dec 2013 03:05:29 -0500 From: Amos Kong Date: Mon, 9 Dec 2013 16:05:57 +0800 Message-Id: <1386576358-10469-2-git-send-email-akong@redhat.com> In-Reply-To: <1386576358-10469-1-git-send-email-akong@redhat.com> References: <1386576358-10469-1-git-send-email-akong@redhat.com> Subject: [Qemu-devel] [PATCH v2 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, armbru@redhat.com, anthony@codemonkey.ws 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