diff options
author | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-30 05:58:52 +0000 |
---|---|---|
committer | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-30 05:58:52 +0000 |
commit | fe467413d2230a2170bb3ffc91e5e8c909920628 (patch) | |
tree | 7da43ac0a74480310fcd775c9d47b8e86bf07bab /MdePkg/Library/DxeHobLib | |
parent | 7829726671acec54707ebfd0ac115dfd86b253e9 (diff) | |
download | edk2-platforms-fe467413d2230a2170bb3ffc91e5e8c909920628.tar.xz |
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/DxeHobLib')
-rw-r--r-- | MdePkg/Library/DxeHobLib/HobLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/DxeHobLib/HobLib.c b/MdePkg/Library/DxeHobLib/HobLib.c index d6e9e5fed6..db69912e4f 100644 --- a/MdePkg/Library/DxeHobLib/HobLib.c +++ b/MdePkg/Library/DxeHobLib/HobLib.c @@ -23,7 +23,7 @@ #include <Library/DebugLib.h>
#include <Library/BaseMemoryLib.h>
-STATIC VOID *mHobList = NULL;
+VOID *mHobList = NULL;
/**
The constructor function caches the pointer to HOB list.
|