diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2017-01-11 13:14:40 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2017-01-11 13:14:40 +0800 |
commit | 7c14bc8769fbe1670e3b3d09d6cd531713eb74a4 (patch) | |
tree | c142d193b7a10e9c2399d7ad06c86ed1caf026e7 /ShellPkg | |
parent | de8cea6f3c2d83966e131a2edc4b26daf970ccd4 (diff) | |
download | edk2-7c14bc8769fbe1670e3b3d09d6cd531713eb74a4.tar.gz edk2-7c14bc8769fbe1670e3b3d09d6cd531713eb74a4.tar.bz2 edk2-7c14bc8769fbe1670e3b3d09d6cd531713eb74a4.zip |
ShellPkg/HandleParsingLib: Fix build failure due to missing semicolon
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Diffstat (limited to 'ShellPkg')
-rw-r--r-- | ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c b/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c index b4cd1b3bee..c368d8cb21 100644 --- a/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c +++ b/ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.c @@ -3099,7 +3099,7 @@ GetAllMappingGuids ( )
{
UINTN GuidCount;
- UINTN NtGuidCount
+ UINTN NtGuidCount;
UINTN Index;
if (Count == NULL) {
|