mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[FATTEN]
* "struct tm" uses years offset on 1900, so we only have to offset by 80 years to make it into a FAT year. svn path=/trunk/; revision=69138
This commit is contained in:
parent
daad9d303b
commit
c34c8f1adb
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ DWORD get_fattime()
|
|||
timeinfo->tm_hour,
|
||||
timeinfo->tm_mday,
|
||||
timeinfo->tm_mon,
|
||||
timeinfo->tm_year - 1980,
|
||||
timeinfo->tm_year - 80,
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue