From: Derick Rethans Date: Thu, 13 Mar 2008 16:00:18 +0000 (+0000) Subject: - MF53: Fixed bug #44257 (timelib_tz_lookup_table must use float for X-Git-Tag: RELEASE_2_0_0a1~144 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc07cc0bd98e4841a6a43b89c16b3032a3886de6;p=php - MF53: Fixed bug #44257 (timelib_tz_lookup_table must use float for gmtoffset). --- 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;