ShellPkg: Fix comments. Refine code style.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>


git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15815 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Qiu Shumin
2014-08-18 00:48:22 +00:00
committed by shenshushi
parent da03183cd0
commit f5ba4007ae
5 changed files with 16 additions and 12 deletions

View File

@ -35,11 +35,15 @@ PrintDynamicCommandHelp(
)
{
EFI_STATUS Status;
BOOLEAN Found = FALSE;
EFI_HANDLE *CommandHandleList = NULL;
BOOLEAN Found;
EFI_HANDLE *CommandHandleList;
EFI_HANDLE *NextCommand;
EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL *DynamicCommand;
CHAR16 *OutText = NULL;
CHAR16 *OutText;
Found = FALSE;
CommandHandleList = NULL;
OutText = NULL;
CommandHandleList = GetHandleListByProtocol(&gEfiShellDynamicCommandProtocolGuid);