From cc07cc0bd98e4841a6a43b89c16b3032a3886de6 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Thu, 13 Mar 2008 16:00:18 +0000 Subject: [PATCH] - MF53: Fixed bug #44257 (timelib_tz_lookup_table must use float for gmtoffset). --- ext/date/lib/timelib_structs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/date/lib/timelib_structs.h b/ext/date/lib/timelib_structs.h index c24f6ee74d..4d6ed12a7f 100644 --- a/ext/date/lib/timelib_structs.h +++ b/ext/date/lib/timelib_structs.h @@ -178,7 +178,7 @@ typedef struct timelib_error_container { typedef struct _timelib_tz_lookup_table { char *name; int type; - int gmtoffset; + float gmtoffset; char *full_tz_name; } timelib_tz_lookup_table; -- 2.50.1