[WIN32SS]
authorAmine Khaldi <amine.khaldi@reactos.org>
Thu, 11 Sep 2014 13:34:39 +0000 (13:34 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Thu, 11 Sep 2014 13:34:39 +0000 (13:34 +0000)
* Remove extraneous parentheses.
CORE-8516

svn path=/trunk/; revision=64120

reactos/win32ss/user/ntuser/timer.c

index 54e1a4c..3cbf14e 100644 (file)
@@ -512,7 +512,7 @@ DestroyTimersForWindow(PTHREADINFO pti, PWND Window)
    PTIMER pTmr;
    BOOL TimersRemoved = FALSE;
 
-   if ((Window == NULL))
+   if (Window == NULL)
       return FALSE;
 
    TimerEnterExclusive();