]> git.sur5r.net Git - cc65/commitdiff
Fixed an invalid offset.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Apr 2012 19:29:04 +0000 (19:29 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Apr 2012 19:29:04 +0000 (19:29 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5635 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/common/filestat.c

index e161e74ada1f7e4a2de8594f646f16b6eb9faa54..64d129a4924fe5facf41db62076ed93f91addedf 100644 (file)
@@ -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;