mirror of https://github.com/acidanthera/audk.git
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:
parent
f0a8eeb2c5
commit
d1a54e2c3e
|
@ -1058,7 +1058,7 @@ TheKey:
|
||||||
HiiValue.Value.u64 = 0;
|
HiiValue.Value.u64 = 0;
|
||||||
for (Index = 0; Index < Question->MaxContainers; Index++) {
|
for (Index = 0; Index < Question->MaxContainers; Index++) {
|
||||||
HiiValue.Value.u8 = ValueArray[Index];
|
HiiValue.Value.u8 = ValueArray[Index];
|
||||||
if (HiiValue.Value.u8) {
|
if (HiiValue.Value.u8 != 0) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -525,7 +525,7 @@ DisplayForm (
|
||||||
//
|
//
|
||||||
// If there is more string to process print on the next row and increment the Skip value
|
// 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++;
|
NumberOfLines++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1216,7 +1216,7 @@ UpdateOptionSkipLines (
|
||||||
//
|
//
|
||||||
// If there is more string to process print on the next row and increment the Skip value
|
// If there is more string to process print on the next row and increment the Skip value
|
||||||
//
|
//
|
||||||
if (StrLen (&OptionString[Index])) {
|
if (StrLen (&OptionString[Index]) != 0) {
|
||||||
if (SkipValue == 0) {
|
if (SkipValue == 0) {
|
||||||
Row++;
|
Row++;
|
||||||
//
|
//
|
||||||
|
@ -1633,7 +1633,7 @@ UiDisplayMenu (
|
||||||
//
|
//
|
||||||
// If there is more string to process print on the next row and increment the Skip value
|
// If there is more string to process print on the next row and increment the Skip value
|
||||||
//
|
//
|
||||||
if (StrLen (&MenuOption->Description[Index])) {
|
if (StrLen (&MenuOption->Description[Index]) != 0) {
|
||||||
if (Temp == 0) {
|
if (Temp == 0) {
|
||||||
Row++;
|
Row++;
|
||||||
}
|
}
|
||||||
|
@ -1728,7 +1728,7 @@ UiDisplayMenu (
|
||||||
//
|
//
|
||||||
// If there is more string to process print on the next row and increment the Skip value
|
// If there is more string to process print on the next row and increment the Skip value
|
||||||
//
|
//
|
||||||
if (StrLen (&OptionString[Index])) {
|
if (StrLen (&OptionString[Index]) != 0) {
|
||||||
if (Temp2 == 0) {
|
if (Temp2 == 0) {
|
||||||
Row++;
|
Row++;
|
||||||
//
|
//
|
||||||
|
@ -1771,7 +1771,7 @@ UiDisplayMenu (
|
||||||
//
|
//
|
||||||
// If there is more string to process print on the next row and increment the Skip value
|
// If there is more string to process print on the next row and increment the Skip value
|
||||||
//
|
//
|
||||||
if (StrLen (&StringPtr[Index])) {
|
if (StrLen (&StringPtr[Index]) != 0) {
|
||||||
if (Temp2 == 0) {
|
if (Temp2 == 0) {
|
||||||
Row++;
|
Row++;
|
||||||
//
|
//
|
||||||
|
@ -1945,7 +1945,7 @@ UiDisplayMenu (
|
||||||
//
|
//
|
||||||
// If there is more string to process print on the next row and increment the Skip value
|
// If there is more string to process print on the next row and increment the Skip value
|
||||||
//
|
//
|
||||||
if (StrLen (&OptionString[Index])) {
|
if (StrLen (&OptionString[Index]) != 0) {
|
||||||
MenuOption->Row++;
|
MenuOption->Row++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1973,7 +1973,7 @@ UiDisplayMenu (
|
||||||
//
|
//
|
||||||
// If there is more string to process print on the next row and increment the Skip value
|
// If there is more string to process print on the next row and increment the Skip value
|
||||||
//
|
//
|
||||||
if (StrLen (&MenuOption->Description[Index])) {
|
if (StrLen (&MenuOption->Description[Index]) != 0) {
|
||||||
MenuOption->Row++;
|
MenuOption->Row++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2051,7 +2051,7 @@ UiDisplayMenu (
|
||||||
//
|
//
|
||||||
// If there is more string to process print on the next row and increment the Skip value
|
// If there is more string to process print on the next row and increment the Skip value
|
||||||
//
|
//
|
||||||
if (StrLen (&OptionString[Index])) {
|
if (StrLen (&OptionString[Index]) != 0) {
|
||||||
MenuOption->Row++;
|
MenuOption->Row++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2074,7 +2074,7 @@ UiDisplayMenu (
|
||||||
//
|
//
|
||||||
// If there is more string to process print on the next row and increment the Skip value
|
// If there is more string to process print on the next row and increment the Skip value
|
||||||
//
|
//
|
||||||
if (StrLen (&MenuOption->Description[Index])) {
|
if (StrLen (&MenuOption->Description[Index]) != 0) {
|
||||||
MenuOption->Row++;
|
MenuOption->Row++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue