diff options
Diffstat (limited to 'MdeModulePkg/Universal/SetupBrowserDxe')
-rw-r--r-- | MdeModulePkg/Universal/SetupBrowserDxe/Ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Universal/SetupBrowserDxe/Ui.c b/MdeModulePkg/Universal/SetupBrowserDxe/Ui.c index 1b39ed7f2a..d0d45277a1 100644 --- a/MdeModulePkg/Universal/SetupBrowserDxe/Ui.c +++ b/MdeModulePkg/Universal/SetupBrowserDxe/Ui.c @@ -1455,7 +1455,7 @@ GetLineByWidth ( // Skip the space info at the begin of next line.
//
*Index = (UINT16) (*Index + StrOffset + 1);
- } else if ((InputString[*Index + StrOffset] == CHAR_LINEFEED)) {
+ } else if (InputString[*Index + StrOffset] == CHAR_LINEFEED) {
//
// Skip the /n or /n/r info.
//
@@ -1464,7 +1464,7 @@ GetLineByWidth ( } else {
*Index = (UINT16) (*Index + StrOffset + 1);
}
- } else if ((InputString[*Index + StrOffset] == CHAR_CARRIAGE_RETURN)) {
+ } else if (InputString[*Index + StrOffset] == CHAR_CARRIAGE_RETURN) {
//
// Skip the /r or /r/n info.
//
|