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
This commit is contained in:
niruiyu 2011-06-29 07:15:58 +00:00
parent e23e488ec6
commit 8de06925cc
1 changed files with 1 additions and 1 deletions

View File

@ -74,6 +74,6 @@ PrintString (
//
// All information also output to serial port.
//
SerialPortWrite (PrintBuffer, Index);
SerialPortWrite ((UINT8 *) PrintBuffer, Index);
}