Skip to content
Snippets Groups Projects
Commit 25b0efa5 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard
Browse files

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

parent c1223611
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment