]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmulatorPkg/Unix/Host/Host.c
EmulatorPkg: formalize line endings
[mirror_edk2.git] / EmulatorPkg / Unix / Host / Host.c
index f84b22f576a2d35d7b685c792ad85d77a018b5fa..9aba7c854df978ec488fb83453980cc862e4574b 100644 (file)
@@ -1148,7 +1148,7 @@ GdbScriptAddImage (
 \r
   if (ImageContext->PdbPointer != NULL && !IsPdbFile (ImageContext->PdbPointer)) {\r
     FILE  *GdbTempFile;\r
-    if (FeaturePcdGet (PcdEmulatorLazyLoadSymbols)) {    \r
+    if (FeaturePcdGet (PcdEmulatorLazyLoadSymbols)) {\r
       GdbTempFile = fopen (gGdbWorkingFileName, "a");\r
       if (GdbTempFile != NULL) {\r
         long unsigned int SymbolsAddr = (long unsigned int)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders);\r
@@ -1170,13 +1170,13 @@ GdbScriptAddImage (
       GdbTempFile = fopen (gGdbWorkingFileName, "w");\r
       if (GdbTempFile != NULL) {\r
         fprintf (\r
-          GdbTempFile, \r
-          "add-symbol-file %s 0x%08lx\n", \r
-          ImageContext->PdbPointer, \r
+          GdbTempFile,\r
+          "add-symbol-file %s 0x%08lx\n",\r
+          ImageContext->PdbPointer,\r
           (long unsigned int)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders)\r
           );\r
         fclose (GdbTempFile);\r
-  \r
+\r
         //\r
         // Target for gdb breakpoint in a script that uses gGdbWorkingFileName to set a breakpoint.\r
         // Hey what can you say scripting in gdb is not that great....\r
@@ -1225,7 +1225,7 @@ GdbScriptRemoveImage (
     return;\r
   }\r
 \r
-  if (FeaturePcdGet (PcdEmulatorLazyLoadSymbols)) {    \r
+  if (FeaturePcdGet (PcdEmulatorLazyLoadSymbols)) {\r
     //\r
     // Write the file we need for the gdb script\r
     //\r
@@ -1256,7 +1256,7 @@ GdbScriptRemoveImage (
       SecGdbScriptBreak (ImageContext->PdbPointer, strlen (ImageContext->PdbPointer) + 1, 0, 0);\r
     } else {\r
       ASSERT (FALSE);\r
-    }  \r
+    }\r
   }\r
 }\r
 \r