Revision: 14529
http://sourceforge.net/p/edk2/code/14529
Author: oliviermartin
Date: 2013-08-07 09:23:23 +0000 (Wed, 07 Aug 2013)
Log Message:
-----------
MdePkg/BasePeCoffLib: Fixed coding style
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <[email protected]>
Reviewed-by: Eric Dong <[email protected]>
Modified Paths:
--------------
trunk/edk2/MdePkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c
Modified: trunk/edk2/MdePkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c
===================================================================
--- trunk/edk2/MdePkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c
2013-08-07 08:11:14 UTC (rev 14528)
+++ trunk/edk2/MdePkg/Library/BasePeCoffLib/AArch64/PeCoffLoaderEx.c
2013-08-07 09:23:23 UTC (rev 14529)
@@ -40,16 +40,16 @@
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;
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with <2% overhead.
Download for free and get started troubleshooting in minutes.
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits