From e7a8edfdf6128729737ec9eda360689a972b7c27 Mon Sep 17 00:00:00 2001 From: Jaben Carsey Date: Tue, 5 Aug 2014 23:26:51 +0000 Subject: [PATCH] ShellPkg: Remove double typedef for same struct Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jaben Carsey Reviewed-by: Andrew Fish git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15761 6f19259b-4bc3-4df7-8a09-765794883524 --- ShellPkg/Include/Protocol/EfiShellDynamicCommand.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ShellPkg/Include/Protocol/EfiShellDynamicCommand.h b/ShellPkg/Include/Protocol/EfiShellDynamicCommand.h index 713f5df74d..907a23a3c5 100644 --- a/ShellPkg/Include/Protocol/EfiShellDynamicCommand.h +++ b/ShellPkg/Include/Protocol/EfiShellDynamicCommand.h @@ -73,13 +73,13 @@ CHAR16* ); /// EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL protocol structure. -typedef struct _EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL { +struct _EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL { CONST CHAR16 *CommandName; SHELL_COMMAND_HANDLER Handler; SHELL_COMMAND_GETHELP GetHelp; -} EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL; +}; extern EFI_GUID gEfiShellDynamicCommandProtocolGuid;