mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 06:00:45 +00:00
explorerframe/tests: Avoid a TRUE:FALSE conditional expression.
This commit is contained in:
parent
c1223611af
commit
25b0efa5bb
@ -558,7 +558,7 @@ static BOOL subclass_treeview(INameSpaceTreeControl *pnstc)
|
||||
ok(oldproc != NULL, "Failed to subclass.\n");
|
||||
}
|
||||
|
||||
return oldproc?TRUE:FALSE;
|
||||
return oldproc != 0;
|
||||
}
|
||||
|
||||
static UINT get_msg_count(struct msg_sequence **seq, int sequence_index, UINT message)
|
||||
|
Loading…
Reference in New Issue
Block a user