diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-14 12:58:28 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-14 12:58:28 +0000 |
commit | eb1f74cc89d4b08331134d4a9358a6826b2eff73 (patch) | |
tree | 39ef564e92add3cf6489ba491925bc211425c14c | |
parent | 6c365805df4034045774780973f401513d93ff70 (diff) | |
download | edk2-platforms-eb1f74cc89d4b08331134d4a9358a6826b2eff73.tar.xz |
Add type cast to pass build
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7276 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | UnixPkg/Library/PeiUnixPeCoffLib/PeiUnixPeCoffLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UnixPkg/Library/PeiUnixPeCoffLib/PeiUnixPeCoffLib.c b/UnixPkg/Library/PeiUnixPeCoffLib/PeiUnixPeCoffLib.c index fa9dce4024..bb88bc210f 100644 --- a/UnixPkg/Library/PeiUnixPeCoffLib/PeiUnixPeCoffLib.c +++ b/UnixPkg/Library/PeiUnixPeCoffLib/PeiUnixPeCoffLib.c @@ -68,7 +68,7 @@ PeiUnixPeCoffLibConstructor ( &gEfiPeiPeCoffLoaderGuid,
0,
NULL,
- &mPeiEfiPeiPeCoffLoader
+ (VOID **) &mPeiEfiPeiPeCoffLoader
);
//
// PeCofferLoader guid structure must be installed before this library runs.
|