From 45dd256ee3869a95f548558a676717269e438e63 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sun, 12 Sep 1999 20:58:29 +0000 Subject: [PATCH] Fixed typo. svn path=/trunk/; revision=664 --- reactos/lib/kernel32/process/proc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/kernel32/process/proc.c b/reactos/lib/kernel32/process/proc.c index 0a6cf51c618..f73b90b70ef 100644 --- a/reactos/lib/kernel32/process/proc.c +++ b/reactos/lib/kernel32/process/proc.c @@ -1,4 +1,4 @@ -/* $Id: proc.c,v 1.19 1999/08/29 06:59:03 ea Exp $ +/* $Id: proc.c,v 1.20 1999/09/12 20:58:29 ekohl Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries @@ -319,7 +319,7 @@ SleepEx ( TIME Interval; NTSTATUS errCode; - Interval.QuadPart = dwMilliseconds * 1000; + Interval.QuadPart = dwMilliseconds * 1000; errCode = NtDelayExecution(bAlertable,&Interval); if ( !NT_SUCCESS(errCode) )