From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: redhat.com, ip: 209.132.183.28, mailfrom: lersek@redhat.com) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by groups.io with SMTP; Tue, 30 Jul 2019 06:26:35 -0700 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 17FA0308FEC1; Tue, 30 Jul 2019 13:26:35 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (unknown [10.36.118.39]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8636060856; Tue, 30 Jul 2019 13:26:31 +0000 (UTC) Subject: Re: [PATCH 2/2] ArmPkg: DebugPeCoffExtraActionLib: fix trivial typos To: Philippe Mathieu-Daude , devel@edk2.groups.io Cc: Leif Lindholm , Ard Biesheuvel References: <20190729180321.1715-1-philmd@redhat.com> <20190729180321.1715-3-philmd@redhat.com> From: "Laszlo Ersek" Message-ID: Date: Tue, 30 Jul 2019 15:26:30 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <20190729180321.1715-3-philmd@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.49]); Tue, 30 Jul 2019 13:26:35 +0000 (UTC) Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 07/29/19 20:03, Philippe Mathieu-Daude wrote: > Fix a pair of trivial typos by inserting a space. > > Cc: Leif Lindholm > Cc: Ard Biesheuvel > Signed-off-by: Philippe Mathieu-Daude > --- > .../DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c b/ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c > index 3379744aa185..3f88e84372ee 100644 > --- a/ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c > +++ b/ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c > @@ -87,7 +87,7 @@ PeCoffLoaderRelocateImageExtraAction ( > DEBUG ((EFI_D_LOAD | EFI_D_INFO, "add-symbol-file %a 0x%p\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders))); > #endif > #elif __GNUC__ > - // This may not work correctly if you generate PE/COFF directlyas then the Offset would not be required > + // This may not work correctly if you generate PE/COFF directly as then the Offset would not be required > DEBUG ((EFI_D_LOAD | EFI_D_INFO, "add-symbol-file %a 0x%p\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders))); > #else > DEBUG ((EFI_D_LOAD | EFI_D_INFO, "Loading driver at 0x%11p EntryPoint=0x%11p\n", (VOID *)(UINTN) ImageContext->ImageAddress, FUNCTION_ENTRY_POINT (ImageContext->EntryPoint))); > @@ -124,7 +124,7 @@ PeCoffLoaderUnloadImageExtraAction ( > // Print out the command for the RVD debugger to load symbols for this image > DEBUG ((DEBUG_LOAD | DEBUG_INFO, "unload symbols_only %a\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)))); > #elif __GNUC__ > - // This may not work correctly if you generate PE/COFF directlyas then the Offset would not be required > + // This may not work correctly if you generate PE/COFF directly as then the Offset would not be required > DEBUG ((DEBUG_LOAD | DEBUG_INFO, "remove-symbol-file %a 0x%08x\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders))); > #else > DEBUG ((DEBUG_LOAD | DEBUG_INFO, "Unloading %a\n", ImageContext->PdbPointer)); > Reviewed-by: Laszlo Ersek