diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-01 13:03:17 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-02-01 13:03:17 +0000 |
commit | cb6cb44c1acae7f3734cc567e30b33af145d0e83 (patch) | |
tree | e41a8ed4610d10e95a9b03e3f3fb47cff6282bd3 /MdePkg/Library | |
parent | 7e35214b7f6067258bd3c3258ecd180f8543a034 (diff) | |
download | edk2-cb6cb44c1acae7f3734cc567e30b33af145d0e83.zip edk2-cb6cb44c1acae7f3734cc567e30b33af145d0e83.tar.gz edk2-cb6cb44c1acae7f3734cc567e30b33af145d0e83.tar.bz2 |
Minor update to fix typos and update the file to use \r\n as end of line
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9901 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-rw-r--r-- | MdePkg/Library/BasePeCoffGetEntryPointLib/PeCoffGetEntryPoint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/BasePeCoffGetEntryPointLib/PeCoffGetEntryPoint.c b/MdePkg/Library/BasePeCoffGetEntryPointLib/PeCoffGetEntryPoint.c index a3c117f..e30ae99 100644 --- a/MdePkg/Library/BasePeCoffGetEntryPointLib/PeCoffGetEntryPoint.c +++ b/MdePkg/Library/BasePeCoffGetEntryPointLib/PeCoffGetEntryPoint.c @@ -90,7 +90,7 @@ PeCoffLoaderGetEntryPoint ( @param Pe32Data Pointer to the PE/COFF image that is loaded in system
memory.
- @return Machine type or zero if not a valid iamge.
+ @return Machine type or zero if not a valid image.
**/
UINT16
@@ -277,7 +277,7 @@ PeCoffLoaderGetPdbPointer ( @param Pe32Data Pointer to the PE/COFF image that is loaded in system
memory.
- @return Size of PE/COFF header in bytes or zero if not a valid iamge.
+ @return Size of PE/COFF header in bytes or zero if not a valid image.
**/
UINT32
@@ -306,7 +306,7 @@ PeCoffGetSizeOfHeaders ( }
if (Hdr.Te->Signature == EFI_TE_IMAGE_HEADER_SIGNATURE) {
- SizeOfHeaders = sizeof (EFI_TE_IMAGE_HEADER) + (UINTN)Hdr.Te->BaseOfCode - (UINTN)Hdr.Te->StrippedSize;
+ SizeOfHeaders = sizeof (EFI_TE_IMAGE_HEADER) + (UINTN)Hdr.Te->BaseOfCode - (UINTN)Hdr.Te->StrippedSize;
} else if (Hdr.Pe32->Signature == EFI_IMAGE_NT_SIGNATURE) {
SizeOfHeaders = Hdr.Pe32->OptionalHeader.SizeOfHeaders;
} else {
|