From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51405) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UGFlc-0000U8-PF for qemu-devel@nongnu.org; Thu, 14 Mar 2013 17:32:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UGFlb-00015f-LO for qemu-devel@nongnu.org; Thu, 14 Mar 2013 17:32:52 -0400 Received: from e23smtp06.au.ibm.com ([202.81.31.148]:38156) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UGFlb-00014R-1z for qemu-devel@nongnu.org; Thu, 14 Mar 2013 17:32:51 -0400 Received: from /spool/local by e23smtp06.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 15 Mar 2013 07:27:38 +1000 Received: from d23relay04.au.ibm.com (d23relay04.au.ibm.com [9.190.234.120]) by d23dlp03.au.ibm.com (Postfix) with ESMTP id A5CC4357804A for ; Fri, 15 Mar 2013 08:32:27 +1100 (EST) Received: from d23av03.au.ibm.com (d23av03.au.ibm.com [9.190.234.97]) by d23relay04.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r2ELJAhS48300284 for ; Fri, 15 Mar 2013 08:19:11 +1100 Received: from d23av03.au.ibm.com (loopback [127.0.0.1]) by d23av03.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r2ELVufX010465 for ; Fri, 15 Mar 2013 08:31:56 +1100 From: Anthony Liguori In-Reply-To: <514224D9.20008@siemens.com> References: <514224D9.20008@siemens.com> Date: Thu, 14 Mar 2013 16:31:48 -0500 Message-ID: <87d2v1llbv.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH] qemu-char: Fix typo in virtual console registration List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jan Kiszka Cc: qemu-devel Jan Kiszka writes: > Regression of 01f45d986f. > > Signed-off-by: Jan Kiszka Yeah, another version of this will be pushed shortly from Gerd. Regards, Anthony Liguori > --- > 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