From b13b811b5f93a4b72ffcee0b8703d633b8b7373d Mon Sep 17 00:00:00 2001 From: Emanuele Aliberti Date: Wed, 26 Apr 2000 06:56:12 +0000 Subject: [PATCH] I forgot to update the code that uses SYSTEM_TIME_INFORMATION. svn path=/trunk/; revision=1138 --- reactos/lib/ntdll/csr/api.c | 4 ++-- reactos/lib/ntdll/rtl/time.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/lib/ntdll/csr/api.c b/reactos/lib/ntdll/csr/api.c index 40397d34693..2925e0061af 100644 --- a/reactos/lib/ntdll/csr/api.c +++ b/reactos/lib/ntdll/csr/api.c @@ -1,4 +1,4 @@ -/* $Id: api.c,v 1.6 2000/04/25 23:22:55 ea Exp $ +/* $Id: api.c,v 1.7 2000/04/26 06:56:11 ea Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -94,7 +94,7 @@ CsrSetPriorityClass ( ) { /* FIXME: call csrss to get hProcess' priority */ - *PriorityClass = PS_PRIORITY_CLASS_NORMAL; + *PriorityClass = CSR_PRIORITY_CLASS_NORMAL; return (STATUS_NOT_IMPLEMENTED); } diff --git a/reactos/lib/ntdll/rtl/time.c b/reactos/lib/ntdll/rtl/time.c index e8866cc7c1e..d08e66b2a83 100644 --- a/reactos/lib/ntdll/rtl/time.c +++ b/reactos/lib/ntdll/rtl/time.c @@ -1,4 +1,4 @@ -/* $Id: time.c,v 1.5 2000/04/07 12:45:22 ekohl Exp $ +/* $Id: time.c,v 1.6 2000/04/26 06:56:12 ea Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -287,7 +287,7 @@ RtlLocalTimeToSystemTime ( return Status; SystemTime->QuadPart = LocalTime->QuadPart + - TimeInformation.TimeZoneBias.QuadPart; + TimeInformation.ExpTimeZoneBias.QuadPart; return STATUS_SUCCESS; } @@ -311,7 +311,7 @@ RtlSystemTimeToLocalTime ( return Status; LocalTime->QuadPart = SystemTime->QuadPart - - TimeInformation.TimeZoneBias.QuadPart; + TimeInformation.ExpTimeZoneBias.QuadPart; return STATUS_SUCCESS; } -- 2.17.1