From 25b0efa5bbd44f91ff7eab810bb866e150888136 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Tue, 14 Aug 2012 23:04:59 +0200 Subject: [PATCH] explorerframe/tests: Avoid a TRUE:FALSE conditional expression. --- dlls/explorerframe/tests/nstc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/explorerframe/tests/nstc.c b/dlls/explorerframe/tests/nstc.c index 3ea408fd1f8..59654ac1754 100644 --- a/dlls/explorerframe/tests/nstc.c +++ b/dlls/explorerframe/tests/nstc.c @@ -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) -- 2.11.4.GIT