From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lx3t9-0007A8-Kn for qemu-devel@nongnu.org; Thu, 23 Apr 2009 14:43:11 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lx3t8-00079k-QH for qemu-devel@nongnu.org; Thu, 23 Apr 2009 14:43:11 -0400 Received: from [199.232.76.173] (port=43929 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lx3t8-00079Z-Bq for qemu-devel@nongnu.org; Thu, 23 Apr 2009 14:43:10 -0400 Received: from fg-out-1718.google.com ([72.14.220.155]:32495) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lx3t7-0001Yy-RW for qemu-devel@nongnu.org; Thu, 23 Apr 2009 14:43:10 -0400 Received: by fg-out-1718.google.com with SMTP id e21so46434fga.8 for ; Thu, 23 Apr 2009 11:43:08 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <8E03D70E-E635-4F81-AF37-AA2BF8440F1D@web.de> References: <8E03D70E-E635-4F81-AF37-AA2BF8440F1D@web.de> Date: Thu, 23 Apr 2009 21:43:08 +0300 Message-ID: Subject: Re: [Qemu-devel] [7234] Use a more natural order From: Blue Swirl Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Andreas_F=C3=A4rber?= Cc: qemu-devel@nongnu.org On 4/23/09, Andreas F=C3=A4rber wrote: > > Am 23.04.2009 um 20:29 schrieb Blue Swirl: > > > > Revision: 7234 > > > http://svn.sv.gnu.org/viewvc/?view=3Drev&root=3Dqemu&revision=3D7234 > > Author: blueswir1 > > Date: 2009-04-23 18:29:47 +0000 (Thu, 23 Apr 2009) > > Log Message: > > ----------- > > Use a more natural order > > > > Modified Paths: > > -------------- > > trunk/hw/xen_console.c > > trunk/hw/xen_disk.c > > trunk/hw/xen_domainbuild.c > > > > Modified: trunk/hw/xen_console.c > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > --- trunk/hw/xen_console.c 2009-04-23 13:16:56 UTC (rev 7233) > > +++ trunk/hw/xen_console.c 2009-04-23 18:29:47 UTC (rev 7234) > > @@ -189,7 +189,7 @@ > > free(dom); > > > > type =3D xenstore_read_str(con->console, "type"); > > - if (!type || 0 !=3D strcmp(type, "ioemu")) { > > + if (!type || strcmp(type, "ioemu" !=3D 0)) { > > > > Wrong bracket position. Thanks, fixed.