Fixed typo.
authorEric Kohl <eric.kohl@reactos.org>
Sun, 12 Sep 1999 20:58:29 +0000 (20:58 +0000)
committerEric Kohl <eric.kohl@reactos.org>
Sun, 12 Sep 1999 20:58:29 +0000 (20:58 +0000)
svn path=/trunk/; revision=664

reactos/lib/kernel32/process/proc.c

index 0a6cf51..f73b90b 100644 (file)
@@ -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) )