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

This commit is contained in:
Michael Stefaniuc 2012-08-14 23:04:59 +02:00 committed by Alexandre Julliard
parent c1223611af
commit 25b0efa5bb
1 changed files with 1 additions and 1 deletions

View File

@ -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)