From: Adhemerval Zanella Netto Date: Wed, 26 Oct 2022 19:04:25 +0000 (-0300) Subject: time: Use 64 bit time on tzfile X-Git-Tag: glibc-2.37~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e21c2075193e406a92c0d1cb091a7c804fda4d9;p=thirdparty%2Fglibc.git time: Use 64 bit time on tzfile The tzfile_mtime is already compared to 64 bit time_t stat call. Reviewed-by: DJ Delorie --- diff --git a/time/tzfile.c b/time/tzfile.c index dd75848ba95..394b098856d 100644 --- a/time/tzfile.c +++ b/time/tzfile.c @@ -32,7 +32,7 @@ int __use_tzfile; static dev_t tzfile_dev; static ino64_t tzfile_ino; -static time_t tzfile_mtime; +static __time64_t tzfile_mtime; struct ttinfo {