summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/DxeExtractGuidedSectionLib
diff options
context:
space:
mode:
authorjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-30 05:58:52 +0000
committerjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-30 05:58:52 +0000
commitfe467413d2230a2170bb3ffc91e5e8c909920628 (patch)
tree7da43ac0a74480310fcd775c9d47b8e86bf07bab /MdePkg/Library/DxeExtractGuidedSectionLib
parent7829726671acec54707ebfd0ac115dfd86b253e9 (diff)
downloadedk2-fe467413d2230a2170bb3ffc91e5e8c909920628.tar.gz
edk2-fe467413d2230a2170bb3ffc91e5e8c909920628.tar.bz2
edk2-fe467413d2230a2170bb3ffc91e5e8c909920628.zip
Patch to remove STATIC modifier. This is on longer recommended by EFI Framework coding style. All duplicated symbols has been renamed accordingly.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6295 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/DxeExtractGuidedSectionLib')
-rw-r--r--MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.c b/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.c
index 7250828744..08f14a765c 100644
--- a/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.c
+++ b/MdePkg/Library/DxeExtractGuidedSectionLib/DxeExtractGuidedSectionLib.c
@@ -20,11 +20,11 @@
#include <Library/MemoryAllocationLib.h>
#include <Library/ExtractGuidedSectionLib.h>
-STATIC GUID *mExtractHandlerGuidTable;
-STATIC UINT32 mNumberOfExtractHandler = 0;
+GUID *mExtractHandlerGuidTable;
+UINT32 mNumberOfExtractHandler = 0;
-STATIC EXTRACT_GUIDED_SECTION_DECODE_HANDLER *mExtractDecodeHandlerTable;
-STATIC EXTRACT_GUIDED_SECTION_GET_INFO_HANDLER *mExtractGetInfoHandlerTable;
+EXTRACT_GUIDED_SECTION_DECODE_HANDLER *mExtractDecodeHandlerTable;
+EXTRACT_GUIDED_SECTION_GET_INFO_HANDLER *mExtractGetInfoHandlerTable;
/**
Construtor allocates the global memory to store the registered guid and Handler list.