You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I'm building DcsCfg under VS2017 (#13), I get the following error in DcsCfgCrypt.c:
d:\shared\edk2\DcsPkg\DcsCfg\DcsCfgCrypt.c(1766): error C2220: warning treated as error - no 'object' file generated
d:\shared\edk2\DcsPkg\DcsCfg\DcsCfgCrypt.c(1766): warning C4459: declaration of 'SecRegionData' hides global declaration
d:\shared\edk2\DcsPkg\DcsCfg\DcsCfgCrypt.c(49): note: see declaration of 'SecRegionData'
d:\shared\edk2\DcsPkg\DcsCfg\DcsCfgCrypt.c(1767): warning C4459: declaration of 'SecRegionSize' hides global declaration
d:\shared\edk2\DcsPkg\DcsCfg\DcsCfgCrypt.c(50): note: see declaration of 'SecRegionSize'
d:\shared\edk2\DcsPkg\DcsCfg\DcsCfgCrypt.c(1768): warning C4459: declaration of 'SecRegionOffset' hides global declaration
d:\shared\edk2\DcsPkg\DcsCfg\DcsCfgCrypt.c(51): note: see declaration of 'SecRegionOffset'
The local variables declared in SecRigionDump(sic) or the warning should be suppressed.
There is also typo in SecRigionXxx functions. Apparently they should be named SecRegionXxx.
The text was updated successfully, but these errors were encountered:
Thank you for this report.
I have pushed 2 commits that fox this: one that renames the local variables in SecRigionDump (59f630c) and one that renames the functions SecRigionXxx to SecRegionXxx (88a01b0)
When I'm building DcsCfg under VS2017 (#13), I get the following error in DcsCfgCrypt.c:
The local variables declared in
SecRigionDump
(sic) or the warning should be suppressed.There is also typo in
SecRigionXxx
functions. Apparently they should be namedSecRegionXxx
.The text was updated successfully, but these errors were encountered: