changeset 6597:7b5b3b0c7002 HEAD

Fix to 64bit time_t
author Timo Sirainen <tss@iki.fi>
date Sun, 21 Oct 2007 17:41:30 +0300
parents 454829f6655b
children 7eb8fd17f8c5
files src/lib/utc-mktime.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib/utc-mktime.c	Sun Oct 21 17:00:35 2007 +0300
+++ b/src/lib/utc-mktime.c	Sun Oct 21 17:41:30 2007 +0300
@@ -23,7 +23,7 @@
 time_t utc_mktime(const struct tm *tm)
 {
 	const struct tm *try_tm;
-	int t;
+	time_t t;
 	int bits, dir;
 
 	/* we'll do a binary search across the entire valid time_t range.