mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fixed the value for dwHighDateTime in SystemTimeToFileTime.
svn path=/trunk/; revision=3585
This commit is contained in:
parent
dad0922fda
commit
d9c63079bb
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: time.c,v 1.17 2002/09/13 18:53:17 hbirr Exp $
|
/* $Id: time.c,v 1.18 2002/09/30 20:59:39 hbirr Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS system libraries
|
* PROJECT: ReactOS system libraries
|
||||||
|
@ -155,7 +155,7 @@ SystemTimeToFileTime(
|
||||||
if (RtlTimeFieldsToTime (&TimeFields, &liTime))
|
if (RtlTimeFieldsToTime (&TimeFields, &liTime))
|
||||||
{
|
{
|
||||||
lpFileTime->dwLowDateTime = liTime.u.LowPart;
|
lpFileTime->dwLowDateTime = liTime.u.LowPart;
|
||||||
lpFileTime->dwHighDateTime = liTime.u.LowPart;
|
lpFileTime->dwHighDateTime = liTime.u.HighPart;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue