Fix another instance of < B_OK vs != B_OK

This commit is contained in:
John Scipione 2012-04-11 15:34:56 -04:00
parent 5af067fba4
commit 25dba9f11a

View File

@ -559,7 +559,7 @@ TBarApp::MessageReceived(BMessage* message)
{
int32 iconSize;
if (message->FindInt32("be:value", &iconSize) < B_OK)
if (message->FindInt32("be:value", &iconSize) != B_OK)
break;
fSettings.iconSize = iconSize * kIconSizeInterval;