From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1Tdh3I-0003u5-Ti for mharc-grub-devel@gnu.org; Wed, 28 Nov 2012 07:47:44 -0500 Received: from eggs.gnu.org ([208.118.235.92]:47488) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tdh39-0003ti-Am for grub-devel@gnu.org; Wed, 28 Nov 2012 07:47:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tdh34-00066H-4g for grub-devel@gnu.org; Wed, 28 Nov 2012 07:47:35 -0500 Received: from service88.mimecast.com ([195.130.217.12]:49515) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tdh33-00065w-SV for grub-devel@gnu.org; Wed, 28 Nov 2012 07:47:30 -0500 Received: from emea-cam-gw1.Emea.Arm.com (fw-tnat.cambridge.arm.com [217.140.96.21]) (Using TLS) by service88.mimecast.com; Wed, 28 Nov 2012 12:47:26 +0000 Received: from [10.1.79.61] (10.1.2.13) by emea-cam-gw1.Emea.Arm.com (10.1.248.203) with Microsoft SMTP Server id 8.2.254.0; Wed, 28 Nov 2012 12:47:25 +0000 Message-ID: <50B607DC.50500@arm.com> Date: Wed, 28 Nov 2012 12:47:24 +0000 From: Leif Lindholm User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121028 Thunderbird/16.0.2 MIME-Version: 1.0 To: The development of GNU GRUB Subject: Re: [PATCH] Typo in types.h References: <50B3AA6A.2000001@arm.com> <50B6031C.4010303@gmail.com> In-Reply-To: <50B6031C.4010303@gmail.com> X-MC-Unique: 112112812472600502 Content-Type: multipart/mixed; boundary="------------040605030704080204070909" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 195.130.217.12 Cc: =?UTF-8?B?VmxhZGltaXIgJ8+GLWNvZGVyL3BoY29kZXInIFNlcmJpbmVua28=?= X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Nov 2012 12:47:43 -0000 --------------040605030704080204070909 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable On 28/11/12 12:27, Vladimir '=CF=86-coder/phcoder' Serbinenko wrote: > On 26.11.2012 18:44, Leif Lindholm wrote: >> & -> && >> >> Current version functionally correct, but reads a bit funny. > > Please add a correct ChangeLog entry. Complete patch attached. / Leif --------------040605030704080204070909 Content-Type: text/x-patch; name=types_h.patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="types_h.patch" =3D=3D=3D modified file 'ChangeLog' --- ChangeLog=092012-10-28 10:55:22 +0000 +++ ChangeLog=092012-11-28 12:42:39 +0000 @@ -1,3 +1,8 @@ +2012-11-28 Leif Lindholm + + * include/grub/types.h: Fix functionality unaffecting typo in=20 + GRUB_TARGET_WORDSIZE conditional macro. + 2012-10-28 Gr=C3=83=C2=A9goire Sutre =20 =09* util/grub.d/10_netbsd.in: Fix tab indentation and make sure =3D=3D=3D modified file 'include/grub/types.h' --- include/grub/types.h=092012-06-07 12:07:02 +0000 +++ include/grub/types.h=092012-11-26 17:40:33 +0000 @@ -50,7 +50,7 @@ # error "This architecture is not supported because sizeof(void *) !=3D 4 = and sizeof(void *) !=3D 8" #endif =20 -#if !defined (GRUB_UTIL) & !defined (GRUB_TARGET_WORDSIZE) +#if !defined (GRUB_UTIL) && !defined (GRUB_TARGET_WORDSIZE) # if GRUB_TARGET_SIZEOF_VOID_P =3D=3D 4 # define GRUB_TARGET_WORDSIZE 32 # elif GRUB_TARGET_SIZEOF_VOID_P =3D=3D 8 --------------040605030704080204070909--