diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-11-15 09:57:03 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-11-16 12:45:54 +0800 |
commit | 2adf689cb7c66f4790a7d0a9e7e99aad6ebee638 (patch) | |
tree | 4f91dff51919094ae78e947cd2cba526d93cb186 | |
parent | e9597b4519cbeda1c5175518f79a80d7f0b6353b (diff) | |
download | edk2-platforms-2adf689cb7c66f4790a7d0a9e7e99aad6ebee638.tar.xz |
ShellPkg: #ifndef of header files should have postfix underscore
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
-rw-r--r-- | ShellPkg/Include/Protocol/EfiShell.h | 4 | ||||
-rw-r--r-- | ShellPkg/Include/Protocol/EfiShellDynamicCommand.h | 4 | ||||
-rw-r--r-- | ShellPkg/Include/Protocol/EfiShellParameters.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/ShellPkg/Include/Protocol/EfiShell.h b/ShellPkg/Include/Protocol/EfiShell.h index 4fb8f2341f..8e3c2fe4de 100644 --- a/ShellPkg/Include/Protocol/EfiShell.h +++ b/ShellPkg/Include/Protocol/EfiShell.h @@ -13,8 +13,8 @@ **/
-#ifndef __EFI_SHELL_PROTOCOL_H__WRAPPER
-#define __EFI_SHELL_PROTOCOL_H__WRAPPER
+#ifndef __EFI_SHELL_PROTOCOL_H__WRAPPER__
+#define __EFI_SHELL_PROTOCOL_H__WRAPPER__
#include <Protocol/Shell.h>
diff --git a/ShellPkg/Include/Protocol/EfiShellDynamicCommand.h b/ShellPkg/Include/Protocol/EfiShellDynamicCommand.h index 43cb68891c..50f9398ec6 100644 --- a/ShellPkg/Include/Protocol/EfiShellDynamicCommand.h +++ b/ShellPkg/Include/Protocol/EfiShellDynamicCommand.h @@ -13,8 +13,8 @@ **/
-#ifndef __EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL_H__WRAPPER
-#define __EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL_H__WRAPPER
+#ifndef __EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL_H__WRAPPER__
+#define __EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL_H__WRAPPER__
#include <Protocol/ShellDynamicCommand.h>
diff --git a/ShellPkg/Include/Protocol/EfiShellParameters.h b/ShellPkg/Include/Protocol/EfiShellParameters.h index ba8bd1a2c0..184b029ffa 100644 --- a/ShellPkg/Include/Protocol/EfiShellParameters.h +++ b/ShellPkg/Include/Protocol/EfiShellParameters.h @@ -12,8 +12,8 @@ **/
-#ifndef __EFI_SHELL_PARAMETERS_PROTOCOL_H__WRAPPER
-#define __EFI_SHELL_PARAMETERS_PROTOCOL_H__WRAPPER
+#ifndef __EFI_SHELL_PARAMETERS_PROTOCOL_H__WRAPPER__
+#define __EFI_SHELL_PARAMETERS_PROTOCOL_H__WRAPPER__
#include <Protocol/ShellParameters.h>
|