diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-20 05:15:13 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-20 05:15:13 +0000 |
commit | f9f31f7423827143cc0d42d62501db29a44711de (patch) | |
tree | af6c891d6d8d3c82bfac55f6d71c5b01f14b01b2 /MdeModulePkg/Universal | |
parent | f9eb929db4057864af5a4e6eb7f4d77251e9e29e (diff) | |
download | edk2-platforms-f9f31f7423827143cc0d42d62501db29a44711de.tar.xz |
ECC Cleanup: Remove variable initialization in declaration.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6645 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal')
-rw-r--r-- | MdeModulePkg/Universal/SetupBrowserDxe/ProcessOptions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/SetupBrowserDxe/ProcessOptions.c b/MdeModulePkg/Universal/SetupBrowserDxe/ProcessOptions.c index 49c7ff8c5a..dc7ce78236 100644 --- a/MdeModulePkg/Universal/SetupBrowserDxe/ProcessOptions.c +++ b/MdeModulePkg/Universal/SetupBrowserDxe/ProcessOptions.c @@ -833,7 +833,7 @@ ProcessHelpString ( IN UINTN RowCount
)
{
- CONST UINTN BlockWidth = (UINTN) gHelpBlockWidth - 1;
+ UINTN BlockWidth = (UINTN) gHelpBlockWidth - 1;
UINTN AllocateSize;
//
// [PrevCurrIndex, CurrIndex) forms a range of a screen-line
|