From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 8B6CA1A1E0A for ; Sun, 11 Sep 2016 23:43:45 -0700 (PDT) Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id DB2524E4D4; Mon, 12 Sep 2016 06:43:44 +0000 (UTC) Received: from [10.36.116.40] (ovpn-116-40.ams2.redhat.com [10.36.116.40]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u8C6hg9R023615 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 12 Sep 2016 02:43:43 -0400 To: Laszlo Ersek , edk2-devel-01 References: <20160909232840.2353-1-lersek@redhat.com> <20160909232840.2353-2-lersek@redhat.com> Cc: Jordan Justen From: Thomas Huth Message-ID: <17e5edb3-dfb5-eab6-88ef-9fb479e94297@redhat.com> Date: Mon, 12 Sep 2016 08:43:41 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2 MIME-Version: 1.0 In-Reply-To: <20160909232840.2353-2-lersek@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Mon, 12 Sep 2016 06:43:45 +0000 (UTC) Subject: Re: [PATCH 1/3] OvmfPkg/IndustryStandard: make "Xen/grant_table.h" pure ASCII X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2016 06:43:45 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit On 10.09.2016 01:28, Laszlo Ersek wrote: > The header file includes the UTF-8 encoding (0xE2 0x80 0x99) of the U+2019 > (RIGHT SINGLE QUOTATION MARK) code point. Replace it with a simple > apostrophe (U+0027, ASCII 0x27). > > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Laszlo Ersek > Cc: Jordan Justen > Cc: Thomas Huth > --- > OvmfPkg/Include/IndustryStandard/Xen/grant_table.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/OvmfPkg/Include/IndustryStandard/Xen/grant_table.h b/OvmfPkg/Include/IndustryStandard/Xen/grant_table.h > index 9083a3577552..029d049382e1 100644 > --- a/OvmfPkg/Include/IndustryStandard/Xen/grant_table.h > +++ b/OvmfPkg/Include/IndustryStandard/Xen/grant_table.h > @@ -43,7 +43,7 @@ > * table are identified by grant references. A grant reference is an > * integer, which indexes into the grant table. It acts as a > * capability which the grantee can use to perform operations on the > - * granter’s memory. > + * granter's memory. > * > * This capability-based system allows shared-memory communications > * between unprivileged domains. A grant reference also encapsulates > Reviewed-by: Thomas Huth