[3/3] time: Use 64 bit time on tzfile
Checks
Context |
Check |
Description |
dj/TryBot-apply_patch |
success
|
Patch applied to master at the time it was sent
|
dj/TryBot-32bit |
success
|
Build for i686
|
Commit Message
The tzfile_mtime is already compared to 64 bit time_t stat call.
---
time/tzfile.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
Adhemerval Zanella via Libc-alpha <libc-alpha@sourceware.org> writes:
> The tzfile_mtime is already compared to 64 bit time_t stat call.
LGTM
Reviewed-by: DJ Delorie <dj@redhat.com>
@@ -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
{