mirror of https://github.com/acidanthera/audk.git
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>
This commit is contained in:
parent
9f30e40128
commit
4a6b179f4f
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue