]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPkg/Library/DebugPeCoffExtraActionLib/DebugPeCoffExtraActionLib.c
ARM Packages: Removed trailing spaces
[mirror_edk2.git] / ArmPkg / Library / DebugPeCoffExtraActionLib / DebugPeCoffExtraActionLib.c
index 0758af8ac6900500a481f57e4fc8d5617ba2d597..41018decab020f792404f2b0a3e6a285b9b1621e 100755 (executable)
@@ -25,7 +25,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
 \r
 /**\r
-  If the build is done on cygwin the paths are cygpaths. \r
+  If the build is done on cygwin the paths are cygpaths.\r
   /cygdrive/c/tmp.txt vs c:\tmp.txt so we need to convert\r
   them to work with RVD commands\r
 \r
@@ -42,12 +42,12 @@ DeCygwinPathIfNeeded (
   CHAR8   *Ptr;\r
   UINTN   Index;\r
   UINTN   Index2;\r
-  \r
+\r
   Ptr = AsciiStrStr (Name, "/cygdrive/");\r
   if (Ptr == NULL) {\r
     return Name;\r
   }\r
-  \r
+\r
   for (Index = 9, Index2 = 0; (Index < (Size + 9)) && (Ptr[Index] != '\0'); Index++, Index2++) {\r
     Temp[Index2] = Ptr[Index];\r
     if (Temp[Index2] == '/') {\r
@@ -79,7 +79,7 @@ PeCoffLoaderRelocateImageExtraAction (
   IN OUT PE_COFF_LOADER_IMAGE_CONTEXT  *ImageContext\r
   )\r
 {\r
-#if !defined(MDEPKG_NDEBUG) \r
+#if !defined(MDEPKG_NDEBUG)\r
   CHAR8 Temp[512];\r
 #endif\r
 \r
@@ -108,9 +108,9 @@ PeCoffLoaderRelocateImageExtraAction (
 /**\r
   Performs additional actions just before a PE/COFF image is unloaded.  Any resources\r
   that were allocated by PeCoffLoaderRelocateImageExtraAction() must be freed.\r
-  \r
+\r
   If ImageContext is NULL, then ASSERT().\r
-  \r
+\r
   @param  ImageContext  Pointer to the image context structure that describes the\r
                         PE/COFF image that is being unloaded.\r
 \r
@@ -124,7 +124,7 @@ PeCoffLoaderUnloadImageExtraAction (
 #if !defined(MDEPKG_NDEBUG)\r
   CHAR8 Temp[512];\r
 #endif\r
-  \r
+\r
   if (ImageContext->PdbPointer) {\r
 #ifdef __CC_ARM\r
     // Print out the command for the RVD debugger to load symbols for this image\r