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: philmd@redhat.com) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by groups.io with SMTP; Mon, 29 Jul 2019 11:03:31 -0700 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 4D240300BC74; Mon, 29 Jul 2019 18:03:31 +0000 (UTC) Received: from x1w.redhat.com (unknown [10.40.205.107]) by smtp.corp.redhat.com (Postfix) with ESMTPS id C7D7A5C1B5; Mon, 29 Jul 2019 18:03:29 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Leif Lindholm , Laszlo Ersek , Ard Biesheuvel , Philippe Mathieu-Daude Subject: [PATCH 2/2] ArmPkg: DebugPeCoffExtraActionLib: fix trivial typos Date: Mon, 29 Jul 2019 20:03:21 +0200 Message-Id: <20190729180321.1715-3-philmd@redhat.com> In-Reply-To: <20190729180321.1715-1-philmd@redhat.com> References: <20190729180321.1715-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.45]); Mon, 29 Jul 2019 18:03:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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/DebugPeCoffExtraAct= ionLib.c b/ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActio= nLib.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", DeCygw= inPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UINTN)(I= mageContext->ImageAddress + ImageContext->SizeOfHeaders))); #endif #elif __GNUC__ - // This may not work correctly if you generate PE/COFF directlyas th= en the Offset would not be required + // This may not work correctly if you generate PE/COFF directly as t= hen the Offset would not be required DEBUG ((EFI_D_LOAD | EFI_D_INFO, "add-symbol-file %a 0x%p\n", DeCygw= inPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UINTN)(I= mageContext->ImageAddress + ImageContext->SizeOfHeaders))); #else DEBUG ((EFI_D_LOAD | EFI_D_INFO, "Loading driver at 0x%11p EntryPoin= t=3D0x%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 th= is image DEBUG ((DEBUG_LOAD | DEBUG_INFO, "unload symbols_only %a\n", DeCygwi= nPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)))); #elif __GNUC__ - // This may not work correctly if you generate PE/COFF directlyas th= en the Offset would not be required + // This may not work correctly if you generate PE/COFF directly as t= hen the Offset would not be required DEBUG ((DEBUG_LOAD | DEBUG_INFO, "remove-symbol-file %a 0x%08x\n", D= eCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UIN= TN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders))); #else DEBUG ((DEBUG_LOAD | DEBUG_INFO, "Unloading %a\n", ImageContext->Pdb= Pointer)); --=20 2.20.1