I forgot to update the code that uses SYSTEM_TIME_INFORMATION.

svn path=/trunk/; revision=1138
This commit is contained in:
Emanuele Aliberti 2000-04-26 06:56:12 +00:00
parent b3ea65f0e4
commit b13b811b5f
2 changed files with 5 additions and 5 deletions

View file

@ -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);
}

View file

@ -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;
}