From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.31; helo=mga06.intel.com; envelope-from=michael.d.kinney@intel.com; receiver=edk2-devel@lists.01.org Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (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 641A321CF1CFA for ; Tue, 13 Feb 2018 16:53:27 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Feb 2018 16:59:18 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,509,1511856000"; d="scan'208";a="203910916" Received: from orsmsx108.amr.corp.intel.com ([10.22.240.6]) by fmsmga005.fm.intel.com with ESMTP; 13 Feb 2018 16:59:18 -0800 Received: from orsmsx113.amr.corp.intel.com ([169.254.9.97]) by ORSMSX108.amr.corp.intel.com ([169.254.2.52]) with mapi id 14.03.0319.002; Tue, 13 Feb 2018 16:59:17 -0800 From: "Kinney, Michael D" To: "Zeng, Star" , "Ni, Ruiyu" , "edk2-devel@lists.01.org" , "Kinney, Michael D" CC: "Bi, Dandan" , "Zeng, Star" Thread-Topic: [edk2] [PATCH] MdeModulePkg/ResetUtilityLib: Fix GCC build failure Thread-Index: AQHTpHccXTD0wMpdk0mGZ3poAJxCHaOidX+AgACfWnA= Date: Wed, 14 Feb 2018 00:59:16 +0000 Message-ID: References: <20180213030230.33228-1-ruiyu.ni@intel.com> <0C09AFA07DD0434D9E2A0C6AEB0483103BA3F15C@shsmsx102.ccr.corp.intel.com> In-Reply-To: <0C09AFA07DD0434D9E2A0C6AEB0483103BA3F15C@shsmsx102.ccr.corp.intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [10.22.254.139] MIME-Version: 1.0 Subject: Re: [PATCH] MdeModulePkg/ResetUtilityLib: Fix GCC build failure X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Feb 2018 00:53:28 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Michael D Kinney > -----Original Message----- > From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] > On Behalf Of Zeng, Star > Sent: Monday, February 12, 2018 11:28 PM > To: Ni, Ruiyu ; edk2- > devel@lists.01.org > Cc: Bi, Dandan ; Zeng, Star > > Subject: Re: [edk2] [PATCH] MdeModulePkg/ResetUtilityLib: > Fix GCC build failure >=20 > Reviewed-by: Star Zeng >=20 > Thanks, > Star > -----Original Message----- > From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] > On Behalf Of Ruiyu Ni > Sent: Tuesday, February 13, 2018 11:03 AM > To: edk2-devel@lists.01.org > Cc: Bi, Dandan > Subject: [edk2] [PATCH] MdeModulePkg/ResetUtilityLib: Fix > GCC build failure >=20 > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Ruiyu Ni > Cc: Dandan Bi > --- > MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c | 4 > ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git > a/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c > b/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c > index 90de94ca9b..da5fa7b094 100644 > --- a/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c > +++ b/MdeModulePkg/Library/ResetUtilityLib/ResetUtility.c > @@ -1,7 +1,7 @@ > /** @file > This contains the business logic for the module- > specific Reset Helper functions. >=20 > - Copyright (c) 2017 Intel Corporation. All rights > reserved.
> + Copyright (c) 2017 - 2018 Intel Corporation. All > rights reserved.
> Copyright (c) 2016 Microsoft Corporation. All rights > reserved.
>=20 > This program and the accompanying materials are > licensed and made available under @@ -100,7 +100,7 @@ > GetResetPlatformSpecificGuid ( > // > if ((ResetDataStringSize < DataSize) && (DataSize - > ResetDataStringSize) >=3D sizeof (GUID)) { > ResetSubtypeGuid =3D (GUID *)((UINT8 *)ResetData + > ResetDataStringSize); > - DEBUG ((DEBUG_VERBOSE, __FUNCTION__" - Detected > reset subtype %g...\n", ResetSubtypeGuid)); > + DEBUG ((DEBUG_VERBOSE, "%a - Detected reset subtype > %g...\n", > + __FUNCTION__, ResetSubtypeGuid)); > return ResetSubtypeGuid; > } > return NULL; > -- > 2.16.1.windows.1 >=20 > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel