Commit 0afc0d8d authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

uiautomationcore/tests: Drop superfluous TRUE : FALSE conditional expression.

parent 98d7ac0c
......@@ -135,7 +135,7 @@ static BOOL iface_cmp(IUnknown *iface1, IUnknown *iface2)
IUnknown_QueryInterface(iface1, &IID_IUnknown, (void**)&unk1);
IUnknown_QueryInterface(iface2, &IID_IUnknown, (void**)&unk2);
cmp = (unk1 == unk2) ? TRUE : FALSE;
cmp = unk1 == unk2;
IUnknown_Release(unk1);
IUnknown_Release(unk2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment