Fix non-win32 builds
This commit is contained in:
parent
c4f4d74911
commit
7fd27d1de2
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user