ECC cleanup: Non-Boolean comparisons should use a compare operator (==, !=, >, < >=, <=)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7481 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -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++;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user