Commit 25b0efa5 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

explorerframe/tests: Avoid a TRUE:FALSE conditional expression.

parent c1223611
......@@ -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)
......
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