From b84451d1c35f25bb108bf2c70202bf55e94dc182 Mon Sep 17 00:00:00 2001 From: Mike Nordell Date: Tue, 17 Feb 2004 10:52:03 +0000 Subject: [PATCH] Changed timeout from 2000 to 2001 ms, to be able to find it easier in kmode. svn path=/trunk/; revision=8218 --- reactos/apps/tests/apc2/apc2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/apps/tests/apc2/apc2.c b/reactos/apps/tests/apc2/apc2.c index 739fc181984..ca3699cca58 100644 --- a/reactos/apps/tests/apc2/apc2.c +++ b/reactos/apps/tests/apc2/apc2.c @@ -31,7 +31,7 @@ int main() bSuccess = SetWaitableTimer( hTimer, &DueTime, - 2000 /*interval*/, + 2001 /*interval (using an odd number to be able to find it easy in kmode) */, TimerApcProc, &value /*callback argument*/, FALSE );