diff options
author | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-08-23 15:32:49 +0000 |
---|---|---|
committer | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-08-23 15:32:49 +0000 |
commit | d159ab9538f5fa7e88fec320811e8da2247438f8 (patch) | |
tree | adc3f4538c3badab1483d083116ffbeab03d2710 /ShellPkg | |
parent | 92870c983c6d99d31f449d8dcd729090255dda49 (diff) | |
download | edk2-platforms-d159ab9538f5fa7e88fec320811e8da2247438f8.tar.xz |
ShellPkg: fix build error when converting INTN to INT32.
signed-off-by: jcarsey
Reviewed-by: lgao4
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12186 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c index fec7124315..3602a72433 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/MainHexEditor.c @@ -106,7 +106,7 @@ HMainCommandDisplayHelp ( VOID
)
{
- INTN CurrentLine=0;
+ INT32 CurrentLine=0;
CHAR16 * InfoString;
EFI_INPUT_KEY Key;
|