diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-30 06:04:55 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-30 06:04:55 +0000 |
commit | 8941b53e59ee9a78968bb70abb2056100f9410fb (patch) | |
tree | 6dc76e6ad277e209c4764908be9804ba8f593a5c /DuetPkg/DxeIpl | |
parent | dd1e6e117e2b4df4a0e63fe35961e37685930133 (diff) | |
download | edk2-platforms-8941b53e59ee9a78968bb70abb2056100f9410fb.tar.xz |
Fix building warning for mismatching paramter pointer type
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7981 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg/DxeIpl')
-rw-r--r-- | DuetPkg/DxeIpl/Debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DuetPkg/DxeIpl/Debug.c b/DuetPkg/DxeIpl/Debug.c index 31b89fc49e..26f7ce0037 100644 --- a/DuetPkg/DxeIpl/Debug.c +++ b/DuetPkg/DxeIpl/Debug.c @@ -97,6 +97,6 @@ PrintString ( //
// All information also output to serial port.
//
- DebugSerialPrint (String);
+ DebugSerialPrint ((CHAR8*)String);
}
|