diff options
author | Qiu Shumin <shumin.qiu@intel.com> | 2014-09-24 05:06:59 +0000 |
---|---|---|
committer | shenshushi <shenshushi@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-09-24 05:06:59 +0000 |
commit | 1fd8de32af59ffc80454483001ff07d431525fd4 (patch) | |
tree | 47df5ed68a08a24417613ef7b74d6871a5004987 /ShellPkg/Library/UefiShellBcfgCommandLib | |
parent | 7a9612ceb28d1c0c61d6b38412ee2deda323ee14 (diff) | |
download | edk2-platforms-1fd8de32af59ffc80454483001ff07d431525fd4.tar.xz |
ShellPkg: Make the argument type match the function expected parameter type to avoid build fail in GCC45.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com>
Reviewed-by: Ni Ruiyu <ruiyu.ni@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16163 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/UefiShellBcfgCommandLib')
-rw-r--r-- | ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c b/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c index 33c2470938..47ec2b5fa6 100644 --- a/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c +++ b/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c @@ -770,7 +770,7 @@ BcfgAddOpt( CHAR16 *Data;
UINT32 KeyIndex;
CHAR16 VariableName[12];
- UINT8 *VariableData;
+ VOID *VariableData;
SHELL_FILE_HANDLE FileHandle;
|