diff options
author | niruiyu <niruiyu@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-06-29 07:15:58 +0000 |
---|---|---|
committer | niruiyu <niruiyu@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-06-29 07:15:58 +0000 |
commit | 8de06925ccd7613ecb78f1340eda75afb910d825 (patch) | |
tree | cfe2e313dda125d238026ba3374acc616232beb6 /DuetPkg/EfiLdr | |
parent | e23e488ec6f56ffdf9a75cfa8b3f07a7058cbd56 (diff) | |
download | edk2-platforms-8de06925ccd7613ecb78f1340eda75afb910d825.tar.xz |
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
Diffstat (limited to 'DuetPkg/EfiLdr')
-rw-r--r-- | DuetPkg/EfiLdr/Debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
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);
}
|