Author: dquintana
Date: Wed Sep 9 01:38:21 2015
New Revision: 69138
URL:
http://svn.reactos.org/svn/reactos?rev=69138&view=rev
Log:
[FATTEN]
* "struct tm" uses years offset on 1900, so we only have to offset by 80 years
to make it into a FAT year.
Modified:
trunk/reactos/tools/fatten/fatten.c
Modified: trunk/reactos/tools/fatten/fatten.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/fatten/fatten.c?rev=…
==============================================================================
--- trunk/reactos/tools/fatten/fatten.c [iso-8859-1] (original)
+++ trunk/reactos/tools/fatten/fatten.c [iso-8859-1] Wed Sep 9 01:38:21 2015
@@ -45,7 +45,7 @@
timeinfo->tm_hour,
timeinfo->tm_mday,
timeinfo->tm_mon,
- timeinfo->tm_year - 1980,
+ timeinfo->tm_year - 80,
}
};