From patchwork Sun Nov 22 12:36:11 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Herv=C3=A9_Poussineau?= X-Patchwork-Id: 38995 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id CFDEEB7B3E for ; Sun, 22 Nov 2009 23:40:05 +1100 (EST) Received: from localhost ([127.0.0.1]:35635 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NCBjV-0006ep-W7 for incoming@patchwork.ozlabs.org; Sun, 22 Nov 2009 07:40:02 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NCBg7-0005fw-Sg for qemu-devel@nongnu.org; Sun, 22 Nov 2009 07:36:31 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NCBg3-0005Zf-3I for qemu-devel@nongnu.org; Sun, 22 Nov 2009 07:36:31 -0500 Received: from [199.232.76.173] (port=45114 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NCBg2-0005ZL-Mk for qemu-devel@nongnu.org; Sun, 22 Nov 2009 07:36:26 -0500 Received: from smtp3-g21.free.fr ([212.27.42.3]:43593) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NCBg1-0005i2-Bd for qemu-devel@nongnu.org; Sun, 22 Nov 2009 07:36:26 -0500 Received: from smtp3-g21.free.fr (localhost [127.0.0.1]) by smtp3-g21.free.fr (Postfix) with ESMTP id 8C2E281801B for ; Sun, 22 Nov 2009 13:36:18 +0100 (CET) Received: from [192.168.0.32] (rob92-10-88-171-126-33.fbx.proxad.net [88.171.126.33]) by smtp3-g21.free.fr (Postfix) with ESMTP id 8701F8180AF for ; Sun, 22 Nov 2009 13:36:16 +0100 (CET) Message-ID: <4B09303B.8030505@reactos.org> Date: Sun, 22 Nov 2009 13:36:11 +0100 From: =?UTF-8?B?SGVydsOpIFBvdXNzaW5lYXU=?= User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: QEMU Developers X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) Subject: [Qemu-devel] [PATCH] [WIN32] Enable -k option on Windows too X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org [WIN32] Enable -k option on Windows too There is no reason to have it disabled on this platform. Signed-off-by: Hervé Poussineau --- vl.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/vl.c b/vl.c index c3f3c8f..ee43808 100644 --- a/vl.c +++ b/vl.c @@ -5042,11 +5042,9 @@ int main(int argc, char **argv, char **envp) case QEMU_OPTION_S: autostart = 0; break; -#ifndef _WIN32 case QEMU_OPTION_k: keyboard_layout = optarg; break; -#endif case QEMU_OPTION_localtime: rtc_utc = 0; break;