From bc669554a9d682ca4fcba24956ad26813be1bb5b Mon Sep 17 00:00:00 2001 From: jean Date: Tue, 16 Feb 1999 12:45:28 +0000 Subject: [PATCH] correct bug svn path=/trunk/; revision=244 --- reactos/ntoskrnl/rtl/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/rtl/time.c b/reactos/ntoskrnl/rtl/time.c index 7fdab2cf7d2..be78a125efd 100644 --- a/reactos/ntoskrnl/rtl/time.c +++ b/reactos/ntoskrnl/rtl/time.c @@ -61,7 +61,7 @@ VOID RtlTimeToTimeFields(PLARGE_INTEGER liTime, int LeapSecondCorrections, SecondsInDay, CurYear; int LeapYear, CurMonth, GMTOffset; long int Days; - long long int Time = *(long long int *)&liTime; + long long int Time = *(long long int *)liTime; /* Extract millisecond from time and convert time into seconds */ TimeFields->Milliseconds = (CSHORT) ((Time % TICKSPERSEC) / TICKSPERMSEC);