diff options
Diffstat (limited to 'MdeModulePkg/Universal/SetupBrowserDxe/Presentation.c')
-rw-r--r-- | MdeModulePkg/Universal/SetupBrowserDxe/Presentation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/SetupBrowserDxe/Presentation.c b/MdeModulePkg/Universal/SetupBrowserDxe/Presentation.c index adc0cf8384..e9fd15e7d9 100644 --- a/MdeModulePkg/Universal/SetupBrowserDxe/Presentation.c +++ b/MdeModulePkg/Universal/SetupBrowserDxe/Presentation.c @@ -525,7 +525,7 @@ DisplayForm ( //
// If there is more string to process print on the next row and increment the Skip value
//
- if (StrLen (&StringPtr[ArrayEntry])) {
+ if (StrLen (&StringPtr[ArrayEntry]) != 0) {
NumberOfLines++;
}
|