From 732be019034ce8bef8a346635a0dfe8401d53120 Mon Sep 17 00:00:00 2001 From: Ianos Gnatiuc Date: Mon, 17 Oct 2005 21:49:22 +0000 Subject: [PATCH] Fixed ggmtime function --- goldlib/gall/gtimall.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goldlib/gall/gtimall.h b/goldlib/gall/gtimall.h index 09d1ed9..05225e5 100644 --- a/goldlib/gall/gtimall.h +++ b/goldlib/gall/gtimall.h @@ -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)