mirror of https://github.com/acidanthera/audk.git
BaseTools: Correct the variable name
the commit bff74750
introduce a undefined variable name 'scope' cause build
failure, it should use 'Scope'.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
5d9af6a55a
commit
053cd183c9
|
@ -1135,7 +1135,7 @@ class FdfParser:
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def __Verify(Name, Value, Scope):
|
def __Verify(Name, Value, Scope):
|
||||||
# value verification only applies to numeric values.
|
# value verification only applies to numeric values.
|
||||||
if scope not in TAB_PCD_NUMERIC_TYPES:
|
if Scope not in TAB_PCD_NUMERIC_TYPES:
|
||||||
return
|
return
|
||||||
|
|
||||||
ValueNumber = 0
|
ValueNumber = 0
|
||||||
|
|
Loading…
Reference in New Issue