Correct the condition.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-06-05 19:15:47 +02:00
parent 9cc0f203ca
commit 24c75975e3
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -810,7 +810,7 @@ PH7_PRIVATE sxi32 PH7_ClassInstanceCmp(ph7_class_instance *pLeft, ph7_class_inst
* are identical if and only if they refer to the same instance
* of the same class.
*/
return !(pLeft == pRight);
return pLeft != pRight;
}
/*
* Attribute comparison.