[FASTFAT]

- Fix DOSDATE struct declaration. Fixes invalid creation, last modified and accessed times on FAT volumes

svn path=/trunk/; revision=54953
This commit is contained in:
Rafal Harabien 2012-01-14 12:02:39 +00:00
parent 68df282e69
commit a79949498a

View file

@ -423,7 +423,7 @@ typedef struct __DOSDATE
{
USHORT Day:5;
USHORT Month:4;
USHORT Year:5;
USHORT Year:7;
}
DOSDATE, *PDOSDATE;