Fixed ggmtime function

This commit is contained in:
Ianos Gnatiuc 2005-10-17 21:49:22 +00:00
parent 50c20ae93d
commit 732be01903

View File

@ -148,7 +148,7 @@ inline struct tm* glocaltime(const time_t *timep)
inline struct tm* ggmtime(const time32_t *timep)
{
const time_t temp(*timep);
return glocaltime(&temp);
return ggmtime(&temp);
}
inline struct tm* glocaltime(const time32_t *timep)