summaryrefslogtreecommitdiff
path: root/edk2/NetworkPkg
diff options
context:
space:
mode:
authorhhuan13 <hhuan13@6f19259b-4bc3-4df7-8a09-765794883524>2011-08-16 06:25:47 +0000
committerhhuan13 <hhuan13@6f19259b-4bc3-4df7-8a09-765794883524>2011-08-16 06:25:47 +0000
commit513313a1e79db6addcb648b9ae656b372fe7b963 (patch)
treeb428c9888076e0b638e117f70dd2084a9d8549ca /edk2/NetworkPkg
parent9f2da712325a2f4114931688eb9614e314a153a7 (diff)
1.Fix a icc build break
Signed-off-by: hhuan13 Reviewed-by: lgao4 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk@12141 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'edk2/NetworkPkg')
-rw-r--r--edk2/NetworkPkg/UefiPxeBcDxe/PxeBcDhcp6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/edk2/NetworkPkg/UefiPxeBcDxe/PxeBcDhcp6.c b/edk2/NetworkPkg/UefiPxeBcDxe/PxeBcDhcp6.c
index 23ec9e7fc..92972f670 100644
--- a/edk2/NetworkPkg/UefiPxeBcDxe/PxeBcDhcp6.c
+++ b/edk2/NetworkPkg/UefiPxeBcDxe/PxeBcDhcp6.c
@@ -339,7 +339,7 @@ PxeBcExtractBootFileUrl (
if (*BootFileNamePtr == '%') {
TmpChar = *(BootFileNamePtr+ 3);
*(BootFileNamePtr+ 3) = '\0';
- *BootFileName = (UINT8) AsciiStrHexToUintn (BootFileNamePtr + 1);
+ *BootFileName = (UINT8) AsciiStrHexToUintn ((CHAR8*)(BootFileNamePtr + 1));
BootFileName++;
*(BootFileNamePtr+ 3) = TmpChar;
BootFileNamePtr += 3;