]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ArmPkg: DebugPeCoffExtraActionLib: fix trivial comment typos
authorPhilippe Mathieu-Daude <philmd@redhat.com>
Mon, 29 Jul 2019 18:03:21 +0000 (20:03 +0200)
committerLeif Lindholm <leif.lindholm@linaro.org>
Tue, 30 Jul 2019 13:58:17 +0000 (14:58 +0100)
Fix a pair of trivial typos in comments by inserting a space.

Cc: Leif Lindholm <leif.lindholm@linaro.org>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c

index 3379744aa185fa8fc882e520ce66e54cb51f8297..3f88e84372eebd6d9e9423e9583fdd79442371b0 100644 (file)
@@ -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)));\r
 #endif\r
 #elif __GNUC__\r
-    // This may not work correctly if you generate PE/COFF directlyas then the Offset would not be required\r
+    // This may not work correctly if you generate PE/COFF directly as then the Offset would not be required\r
     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)));\r
 #else\r
     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)));\r
@@ -124,7 +124,7 @@ PeCoffLoaderUnloadImageExtraAction (
     // Print out the command for the RVD debugger to load symbols for this image\r
     DEBUG ((DEBUG_LOAD | DEBUG_INFO, "unload symbols_only %a\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp))));\r
 #elif __GNUC__\r
-    // This may not work correctly if you generate PE/COFF directlyas then the Offset would not be required\r
+    // This may not work correctly if you generate PE/COFF directly as then the Offset would not be required\r
     DEBUG ((DEBUG_LOAD | DEBUG_INFO, "remove-symbol-file %a 0x%08x\n", DeCygwinPathIfNeeded (ImageContext->PdbPointer, Temp, sizeof (Temp)), (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders)));\r
 #else\r
     DEBUG ((DEBUG_LOAD | DEBUG_INFO, "Unloading %a\n", ImageContext->PdbPointer));\r