From dd6475ac3d546435addaac22c93bc344c250ec3a Mon Sep 17 00:00:00 2001 From: uz Date: Sun, 1 Apr 2012 19:29:04 +0000 Subject: [PATCH] Fixed an invalid offset. git-svn-id: svn://svn.cc65.org/cc65/trunk@5635 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/common/filestat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filestat.c b/src/common/filestat.c index e161e74ad..64d129a49 100644 --- a/src/common/filestat.c +++ b/src/common/filestat.c @@ -77,7 +77,7 @@ static time_t FileTimeToUnixTime (const FILETIME* T) * way to express a number > 32 bit (known to me) but is able to do * calculations with 64 bit integers, so we need to do it this way. */ - static const ULARGE_INTEGER Offs = { 0xB6109100UL, 0x20000000UL }; + static const ULARGE_INTEGER Offs = { 0xB6109100UL, 0x00000020UL }; ULARGE_INTEGER V; V.LowPart = T->dwLowDateTime; V.HighPart = T->dwHighDateTime;