summaryrefslogtreecommitdiff
path: root/MdePkg
diff options
context:
space:
mode:
authorOlivier Martin <olivier.martin@arm.com>2013-08-07 09:23:23 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2013-08-07 09:23:23 +0000
commit45a4305bd6490b127e195e3d6889651b400c89c3 (patch)
tree7115ba1fdf594b40d0cbe81405421a4f0af444e0 /MdePkg
parent5b2956ea6340be09abdd1d1881c76919de345a97 (diff)
MdePkg/BasePeCoffLib: Fixed coding style
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin <olivier.martin@arm.com> Reviewed-by: Eric Dong <eric.dong@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14529 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r--MdePkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c b/MdePkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c
index e14fce095..7e4b4db45 100644
--- a/MdePkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c
+++ b/MdePkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c
@@ -40,16 +40,16 @@ PeCoffLoaderRelocateImageEx (
IN UINT64 Adjust
)
{
- UINT64 *F64;
+ UINT64 *Fixup64;
switch ((*Reloc) >> 12) {
case EFI_IMAGE_REL_BASED_DIR64:
- F64 = (UINT64 *) Fixup;
- *F64 = *F64 + (UINT64) Adjust;
+ Fixup64 = (UINT64 *) Fixup;
+ *Fixup64 = *Fixup64 + (UINT64) Adjust;
if (*FixupData != NULL) {
*FixupData = ALIGN_POINTER(*FixupData, sizeof(UINT64));
- *(UINT64 *)(*FixupData) = *F64;
+ *(UINT64 *)(*FixupData) = *Fixup64;
*FixupData = *FixupData + sizeof(UINT64);
}
break;