Fix non-win32 builds

This commit is contained in:
Stas Degteff 2005-10-24 14:26:35 +00:00
parent c4f4d74911
commit 7fd27d1de2

View File

@ -131,7 +131,7 @@ inline struct tm *ggmtime(const time32_t *timep)
struct tm *time = gmtime(&temp);
return time ? time : gmtime(&zero);
#else
return gmtime(temp);
return gmtime(&temp);
#endif
}