]> git.proxmox.com Git - mirror_edk2.git/commitdiff
1.Fix a icc build break
authorhhuan13 <hhuan13@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 16 Aug 2011 06:25:47 +0000 (06:25 +0000)
committerhhuan13 <hhuan13@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 16 Aug 2011 06:25:47 +0000 (06:25 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12141 6f19259b-4bc3-4df7-8a09-765794883524

NetworkPkg/UefiPxeBcDxe/PxeBcDhcp6.c

index 23ec9e7fc9e42e5409e596c602fb093dd2c94b5d..92972f6706883b1c96f3aab51826da7be0711256 100644 (file)
@@ -339,7 +339,7 @@ PxeBcExtractBootFileUrl (
       if (*BootFileNamePtr == '%') {\r
         TmpChar = *(BootFileNamePtr+ 3);\r
         *(BootFileNamePtr+ 3) = '\0';\r
-        *BootFileName = (UINT8) AsciiStrHexToUintn (BootFileNamePtr + 1);\r
+        *BootFileName = (UINT8) AsciiStrHexToUintn ((CHAR8*)(BootFileNamePtr + 1));\r
         BootFileName++;\r
         *(BootFileNamePtr+ 3) = TmpChar;\r
         BootFileNamePtr += 3;\r