mingw fixes

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@7475 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2000-09-12 03:58:43 +00:00
parent 34edef037c
commit bc870f3681
6 changed files with 45 additions and 20 deletions

View file

@ -142,7 +142,7 @@ GSTimeNow()
* Get current GMT time, convert to NSTimeInterval since reference date,
*/
GetSystemTime(&sys_time);
t = GSTime(sys_time.eDay, sys_time.wMonth, sys_time.wYear,
t = GSTime(sys_time.wDay, sys_time.wMonth, sys_time.wYear,
sys_time.wHour, sys_time.wMinute, sys_time.wSecond);
#endif
return t + sys_time.wMilliseconds / 1000.0;