From: niruiyu Date: Wed, 29 Jun 2011 07:15:58 +0000 (+0000) Subject: add (UINT8 *) type cast to fix ICC build failure. X-Git-Tag: edk2-stable201903~14586 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=8de06925ccd7613ecb78f1340eda75afb910d825;p=mirror_edk2.git add (UINT8 *) type cast to fix ICC build failure. Signed-off-by: niruiyu git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11926 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/DuetPkg/EfiLdr/Debug.c b/DuetPkg/EfiLdr/Debug.c index f4cd7c15ed..84b2772112 100644 --- a/DuetPkg/EfiLdr/Debug.c +++ b/DuetPkg/EfiLdr/Debug.c @@ -74,6 +74,6 @@ PrintString ( // // All information also output to serial port. // - SerialPortWrite (PrintBuffer, Index); + SerialPortWrite ((UINT8 *) PrintBuffer, Index); }