summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/C/GenFw/ElfConvert.c
diff options
context:
space:
mode:
Diffstat (limited to 'BaseTools/Source/C/GenFw/ElfConvert.c')
-rw-r--r--BaseTools/Source/C/GenFw/ElfConvert.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/BaseTools/Source/C/GenFw/ElfConvert.c b/BaseTools/Source/C/GenFw/ElfConvert.c
index 86f844d2a9..494f9b8e90 100644
--- a/BaseTools/Source/C/GenFw/ElfConvert.c
+++ b/BaseTools/Source/C/GenFw/ElfConvert.c
@@ -3,9 +3,9 @@ Elf convert solution
Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
-This program and the accompanying materials are licensed and made available
-under the terms and conditions of the BSD License which accompanies this
-distribution. The full text of the license may be found at
+This program and the accompanying materials are licensed and made available
+under the terms and conditions of the BSD License which accompanies this
+distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
@@ -92,7 +92,7 @@ CoffAddFixup(
// Add a null entry (is it required ?)
//
CoffAddFixupEntry (0);
-
+
//
// Pad for alignment.
//
@@ -163,7 +163,7 @@ IsElfHeader (
UINT8 *FileBuffer
)
{
- return (FileBuffer[EI_MAG0] == ELFMAG0 &&
+ return (FileBuffer[EI_MAG0] == ELFMAG0 &&
FileBuffer[EI_MAG1] == ELFMAG1 &&
FileBuffer[EI_MAG2] == ELFMAG2 &&
FileBuffer[EI_MAG3] == ELFMAG3);
@@ -199,7 +199,7 @@ ConvertElf (
//
// Compute sections new address.
- //
+ //
VerboseMsg ("Compute sections new address.");
ElfFunctions.ScanSections ();
@@ -246,6 +246,6 @@ ConvertElf (
// Free resources used by ELF functions.
//
ElfFunctions.CleanUp ();
-
+
return TRUE;
}