From b26a0236de0903a005e46ae0952e411ffd7978bb Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Thu, 11 Sep 2014 13:34:39 +0000 Subject: [PATCH] [WIN32SS] * Remove extraneous parentheses. CORE-8516 svn path=/trunk/; revision=64120 --- reactos/win32ss/user/ntuser/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/win32ss/user/ntuser/timer.c b/reactos/win32ss/user/ntuser/timer.c index 54e1a4cc5b8..3cbf14e576e 100644 --- a/reactos/win32ss/user/ntuser/timer.c +++ b/reactos/win32ss/user/ntuser/timer.c @@ -512,7 +512,7 @@ DestroyTimersForWindow(PTHREADINFO pti, PWND Window) PTIMER pTmr; BOOL TimersRemoved = FALSE; - if ((Window == NULL)) + if (Window == NULL) return FALSE; TimerEnterExclusive();