]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Add type-cast to fix build break for IA32 arch
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 15 Jan 2010 02:38:31 +0000 (02:38 +0000)
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 15 Jan 2010 02:38:31 +0000 (02:38 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9768 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Library/BasePeCoffGetEntryPointLib/PeCoffGetEntryPoint.c

index e013ae27eb8a525b9c16cfb0f92c90674dc6a1cb..a3c117feb33bf22b5e60f09706b4058f7951f1a5 100644 (file)
@@ -2,7 +2,7 @@
   Provides the services to get the entry point to a PE/COFF image that has either been \r
   loaded into memory or is executing at it's linked address.\r
 \r
-  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2010, Intel Corporation<BR>\r
   Portions copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>\r
   All rights reserved. This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
@@ -313,6 +313,6 @@ PeCoffGetSizeOfHeaders (
     SizeOfHeaders = 0;\r
   }\r
 \r
-  return SizeOfHeaders;\r
+  return (UINT32) SizeOfHeaders;\r
 }\r
 \r