From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lx3sZ-0006s9-Rh for qemu-devel@nongnu.org; Thu, 23 Apr 2009 14:42:35 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lx3sY-0006rm-CX for qemu-devel@nongnu.org; Thu, 23 Apr 2009 14:42:35 -0400 Received: from [199.232.76.173] (port=43903 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lx3sY-0006ri-5C for qemu-devel@nongnu.org; Thu, 23 Apr 2009 14:42:34 -0400 Received: from savannah.gnu.org ([199.232.41.3]:48198 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Lx3sX-0001SX-Ay for qemu-devel@nongnu.org; Thu, 23 Apr 2009 14:42:33 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Lx3sW-0007LL-6K for qemu-devel@nongnu.org; Thu, 23 Apr 2009 18:42:32 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1Lx3sV-0007Ku-RQ for qemu-devel@nongnu.org; Thu, 23 Apr 2009 18:42:32 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Thu, 23 Apr 2009 18:42:31 +0000 Subject: [Qemu-devel] [7235] Fix typo, thanks to Andreas Faerber for spotting List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 7235 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=7235 Author: blueswir1 Date: 2009-04-23 18:42:30 +0000 (Thu, 23 Apr 2009) Log Message: ----------- Fix typo, thanks to Andreas Faerber for spotting Modified Paths: -------------- trunk/hw/xen_console.c Modified: trunk/hw/xen_console.c =================================================================== --- trunk/hw/xen_console.c 2009-04-23 18:29:47 UTC (rev 7234) +++ trunk/hw/xen_console.c 2009-04-23 18:42:30 UTC (rev 7235) @@ -189,7 +189,7 @@ free(dom); type = xenstore_read_str(con->console, "type"); - if (!type || strcmp(type, "ioemu" != 0)) { + if (!type || strcmp(type, "ioemu") != 0) { xen_be_printf(xendev, 1, "not for me (type=%s)\n", type); return -1; }