From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50531) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UGDpJ-0007IP-8O for qemu-devel@nongnu.org; Thu, 14 Mar 2013 15:28:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UGDpE-00042H-UM for qemu-devel@nongnu.org; Thu, 14 Mar 2013 15:28:33 -0400 Received: from thoth.sbs.de ([192.35.17.2]:34593) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UGDpE-00041S-Km for qemu-devel@nongnu.org; Thu, 14 Mar 2013 15:28:28 -0400 Message-ID: <514224D9.20008@siemens.com> Date: Thu, 14 Mar 2013 20:28:25 +0100 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] qemu-char: Fix typo in virtual console registration List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel Regression of 01f45d986f. Signed-off-by: Jan Kiszka --- ui/console.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ui/console.c b/ui/console.c index 83a6fa3..0f96177 100644 --- a/ui/console.c +++ b/ui/console.c @@ -1742,7 +1742,7 @@ PixelFormat qemu_default_pixelformat(int bpp) static void register_types(void) { - register_char_driver("vc", text_console_init); + register_char_driver("vc", vc_init); } type_init(register_types); -- 1.7.3.4