diff options
author | Feng, Bob C <bob.c.feng@intel.com> | 2019-01-30 17:09:53 +0800 |
---|---|---|
committer | Feng, Bob C <bob.c.feng@intel.com> | 2019-02-02 10:28:56 +0800 |
commit | 4a6b179f4f369c49702a4baee9c32b18551cdcfd (patch) | |
tree | 3be2d896fb3b33a762ed0dbf375b6e2e74d3d423 /BaseTools/Source/Python/Workspace | |
parent | 9f30e401282ff27072fd9463b4de1fa79f085b79 (diff) | |
download | edk2-4a6b179f4f369c49702a4baee9c32b18551cdcfd.tar.gz edk2-4a6b179f4f369c49702a4baee9c32b18551cdcfd.tar.bz2 edk2-4a6b179f4f369c49702a4baee9c32b18551cdcfd.zip |
BaseTools: Fixed incorrect line number in PcdValueInit.c
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1435
This patch is going to fix the issue of incorrect line
number in PcdValueInit.c
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/Workspace')
-rw-r--r-- | BaseTools/Source/Python/Workspace/MetaFileTable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Workspace/MetaFileTable.py b/BaseTools/Source/Python/Workspace/MetaFileTable.py index 823a87e057..8832fc0a8f 100644 --- a/BaseTools/Source/Python/Workspace/MetaFileTable.py +++ b/BaseTools/Source/Python/Workspace/MetaFileTable.py @@ -393,7 +393,7 @@ class PlatformTable(MetaFileTable): if FromItem is not None:
result = [item for item in result if item[9] == FromItem]
- result = [ [r[2],r[3],r[4],r[5],r[6],r[7],r[0],r[9]] for r in result ]
+ result = [ [r[2],r[3],r[4],r[5],r[6],r[7],r[0],r[10]] for r in result ]
return result
def DisableComponent(self,comp_id):
|